How to choose the right model for Non-linear regression?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, I'm trying to use fitnlm to create a model from 7 predictor variables and 1 response variable. If I understand correctly, I need to use something like
mdl = fitnlm(predictors,responses,@modelfun,beta0).
I'm struggling to find which model (@modelfun) is appropriate for my data. how do I see which pre-built models are available? Is there a list of them somewhere?
4 comentarios
Image Analyst
el 23 de Ag. de 2020
Try running pca() on it, or use partial least squares, to decide upon an intelligent model. You're just using the kitchen sink approach or multiple least squares where you throw in everything plus the kitchen sink. It may fit your training data will but might not fit your test data well.
Adam Danz
el 23 de Ag. de 2020
Editada: Adam Danz
el 23 de Ag. de 2020
This answer by the talented John D'Errico walks you through his process of assessing the underlying function of noisy data, although the function in that answer is different from yours.
Just be cautious of overfitting (as Image Analyst mentioned) and correlated predictors (multicollinearity).
These two pages in Matlab's Documentation may be helpful as well,
Respuestas (1)
Ver también
Categorías
Más información sobre Model Building and Assessment en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!