Exponential vs polynomial in regression fitting

Hi there,

it really depends on the system you are modelling. In general, there are systems where you can use an exponential regression model, see e.g. this example here: Bias and variance , tradeoff - #2 by Christian_Simonis

But also when modelling e.g. chancer growth, exponential fits are used, see also this toolbox.

When it comes to limited data I agree with you: then it can sometimes be hard to see then if it’s a polynomial or exponential model that would be suitable, but the longer your data set (e.g. the longer your time series) the stronger it’s visible what is suitable and what not.
In the end you should really incorporate your domain knowledge which model to use and how to design your features most effectively. Also doing some research on the system characteristics you are modelling is highly recommended.

Maybe as some outlook for the future: In case you have limited data but still rich domain knowledge, I can also recommend to think about a hybrid approach, combining a domain model with a data-driven (probabilistic) approach, see also this Github Repo.

Best regards
Christian