Search code examples
rbayesiannon-linear-regressiongam

Comparison of Different Types of Nonlinear Regression Models


Thank you for seeing this post.

Various regression models are being applied to the curve estimating (actual measured ventilation rate). Comparison was made using the GLM and GAM models including polynomial regression. I use R.

enter image description here

Are there any other types of regression models that can simulate that curve well? like...bayesian? (In fact, I didn't even understand if it could be applied here)

Sincerely.


Solution

  • loads of non linear methods exist, and many would give similar results, but this is a statistics question. it would fit better on cross validated. also, you have to tell: do you want to do interpolation, even extrapolation? what is your analysis for?

    bayesian methods are used when you have knowledge of the phenomenon prior to data, or in some cases when you want to apply regularization or graphical models to data generation processes, I think you should better leave out bayesian statistics here.

    edit:

    to be short: if you want to obtain a readable formulation of the curve, and you don't have any specific mathematical model in mind, go for a polynomial fit. Other popular choices, which are better for only plotting the curve, instead of reporting it in a mathematical expression, are smoothing splines and LOESS. for further details, maybe ask a new question on stats.stackexchange.com, after studing better the alternatives.