xypnox / xyplot

Plotting with python made easy
GNU General Public License v2.0
8 stars 2 forks source link

Add interface for plotting arbitrary data and regression with a passed function #3

Open xypnox opened 4 years ago

xypnox commented 4 years ago

What we want to achieve is to plot a set of data and it's fit according to not only polynomial functions (which is already present in the library) but also through arbitrary functions.

For more details on how it is done by matplotlib look into the following references:

https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.curve_fit.html http://scipy-lectures.org/intro/scipy/auto_examples/plot_curve_fit.html

This issue is related to #1