Skip to content
Advertisement

Curve Fitting using Numpy Polyfit, estimate constant on function with Square Root

First of All, Sorry for my poor English and Thanks for clicking this Question.

I already have x and y data sets, so I want to do curve fitting with my data sets.

and estimated Model is enter image description here

then How can I estimate constants of this Model by polyfit?

I know

JavaScript

means Linear Equation Estimating. (1 means Linear)

but How can I estimate using another equation like square root with three or more constants with my data sets.

Advertisement

Answer

You can use scipy.optimize.curve_fit, here is an example how you can do this

JavaScript

this will give you

result

The array popt is the list of (a,b,c) values.


UPDATE

After testing curve_fit using the real dataset provided by reaver lover, I was surprised to find that curve_fit can fail on this relatively simple regression task.

JavaScript

Running this script, you will find the list of coefficients (a,b,c) somehow becomes (nan,nan,nan) near the end of optimization. However, the last (a,b,c) that is not (nan,nan,nan) found by curve_fit has already been good enough, as you can see in the plot

output

I’m really clueless why curve_fit can fail.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement