Non-Linear CURVE FITTING using PYTHON

Поділитися
Вставка
  • Опубліковано 18 сер 2019
  • A tutorial on how to perform a non-linear curve fitting of data-points to any arbitrary function with multiple fitting parameters.
    I use the script package and the script.optimize.curve_fit function to perform an exponential fitting of data-points.
    Documentation:
    docs.scipy.org/doc/scipy/refe...
    Code shown in the video:
    www.bragitoff.com/2019/08/non...
    Hope you find it useful!
    Follow me on:
    FB Page: / bragitoff
    FB Profile: / ducktape07
    FB Page2: / physwhizforum
    IG: / ___physwhiz___
    IG2: / ducktape07
    BLOG: bragitoff.com
    FORUM: physwhiz.bragitoff.com
    ANDROID APPS:
    CrysX: www.bragitoff.com/crysx/
    Others: play.google.com/store/apps/de...

КОМЕНТАРІ • 64

  • @msm932
    @msm932 3 роки тому +14

    I saw at least five tutorials by now, asked three questions on stack-overflow cause that stuff never worked with my function. And finally I found a fellow scientist who gives this marvellous tutorial on curve fitting. Thank you a thousand times, it works!

    • @cking9145
      @cking9145 Рік тому +1

      Did you gibe him a sub and like? 😇

    • @matheusdepaula687
      @matheusdepaula687 Рік тому

      Same as I, this video answered all my questions.

  • @diegolovato5832
    @diegolovato5832 4 роки тому +5

    Bless your soul, this was excellent. I was able to find non-linear relationships between temperature and electrical load of a city, for electricity load forecasting. THANK YOU!

    • @PhysWhiz
      @PhysWhiz  4 роки тому +1

      I'm glad you found it useful 😊

    • @kamleshrathor1866
      @kamleshrathor1866 Рік тому

      How do you decide the best initial guess I also want to find a relationship between droplet diameter and height, but the r2 value is around 0.48 so how can I improve thank you

  • @cryfier
    @cryfier 2 роки тому +1

    Dude your a god that was so well explained! Love you!

  • @candelariohg
    @candelariohg Рік тому

    Thank you very much, friend, I've been suffering for two days what you can't imagine to achieve something like this.

  • @Magnuomoliticus
    @Magnuomoliticus 3 роки тому +7

    Thank you very much! I hope I can help any viewer with this other tips.
    # In this example, if you want to know the errors of the fitting parameters "a" and "b" you can add this line to your code:
    a, b = np.sqrt(np.diag(pcov))
    # If you want to know the r^2 score of the fit, use this lines in your code:
    from sklearn.metrics import r2_score
    r2 = r2_score(yData, func(xData, *popt))
    I wish you the best of lucks!

  • @WizToma
    @WizToma 2 роки тому

    absolute hero so much better than online forums/documentation explenations

    • @PhysWhiz
      @PhysWhiz  2 роки тому

      Glad you think so!

  • @mandarbopardikar9135
    @mandarbopardikar9135 3 роки тому

    Awesome!! This helped me a lot.

  • @sunday-thequant8477
    @sunday-thequant8477 3 роки тому

    Thanks man! Very simple code.

  • @aaronlopes5256
    @aaronlopes5256 3 роки тому

    Thank you...simple and effective

  • @Alex-oh1wt
    @Alex-oh1wt 2 роки тому

    what an absolute legend

  • @mohammadkazemi8854
    @mohammadkazemi8854 4 роки тому +3

    Thanks for this nice tutorial. I have a question. How can I calculate the r2 (r-squared) of the curve fit? Is there any way to convert the pcov to r2? THANKS!

  • @idirhouari3878
    @idirhouari3878 4 роки тому +1

    Thanks for the help :))

  • @sheetanshudeepak8779
    @sheetanshudeepak8779 3 роки тому +1

    sir kindly make video on improve the goodness(reduce SSE) of fitting curve, thank you

  • @NovaWarrior77
    @NovaWarrior77 3 роки тому

    THANK YOU SO MUCH!!

  • @ahmedhass146
    @ahmedhass146 11 місяців тому

    thx sir
    that was helpful :)

  • @MrGreen_N
    @MrGreen_N 3 роки тому

    Well done, thank you

  • @fernandozeledonmunoz6525
    @fernandozeledonmunoz6525 4 роки тому +2

    Is it possible to choose the size of the y-axis? I mean, my experimental y values are very little and i want the graph only to show them in comparision with the curve fitting ...

  • @Gustavo_0107
    @Gustavo_0107 2 роки тому

    Thank you for the video! I have one question, how do I determine the uncertainty of the coefficients generated by the curvefit?

  • @Samphysicsguy
    @Samphysicsguy 2 роки тому

    U saved my life

  • @Anuraag-oh5eb
    @Anuraag-oh5eb 3 роки тому +5

    lovely content! thank you. but your plot .. talk about overfitting the data :D :D :D

  • @oxydol3456
    @oxydol3456 3 роки тому

    interesting topic. thanks.

  • @asherjablon9598
    @asherjablon9598 4 роки тому +2

    How do you find the R squared value?

  • @ahmedroumi2512
    @ahmedroumi2512 3 роки тому

    How can we compute the area under curve ( for exemple for an asymetric gaussian )

  • @addons01
    @addons01 3 роки тому

    I have a question, how can you predict using the curve_fitted function for a specific value but no array, which isn't part of the dataframe? Let's say the x value is 6 and a prediction for this number is needed.

  • @sksahil4374
    @sksahil4374 4 роки тому +2

    how to get error ...??

  • @grenliquid6513
    @grenliquid6513 2 роки тому

    Can u do a curve fit with more than one curve, example u have 2 function/model with same parameter and u want to fit those curves with 2datas u have of that function respectively, maybe u can weight the residual of the curves?

  • @MM-vw1ck
    @MM-vw1ck 3 роки тому

    I have this problem, where the data I'm trying to fit is not of polynomial/exponential form.

  • @JpmestraoPSN
    @JpmestraoPSN 4 роки тому

    thanks

  • @juandiegobohorquez8238
    @juandiegobohorquez8238 3 роки тому

    Do you know if it is possible to use scipy functions instead of defining the fitting function yourself? That is, for example, if I want to make a fit my data with lognormal or power law equation, do I have to write it explicitly and change the parameters for each?

    • @PhysWhiz
      @PhysWhiz  3 роки тому +2

      This is the most automatic it can get if you want to do meaningful science. We only need to define a fitting function here which we do so by considering the type of problem we are considering.

  • @guerreirodaluzgmailcom
    @guerreirodaluzgmailcom 4 роки тому +2

    hi Mr., How do I know which initial values to consider for the initial conjecture of the parameters?
    I will be grateful for the answer

    • @PhysWhiz
      @PhysWhiz  4 роки тому +2

      Just an educated guess is usually enough. If you're modelling something you might have an idea about what to expect. In some cases even bad initial guesses may converge. If not then just try another one randomly if you have no odea about what to expect.

    • @IvCastilla
      @IvCastilla 2 роки тому

      Each problem has a method to get initial values. In Process Simulation you must know where do you com from and what do you espect. There no exists a general method o mathematics for the initial value. Cheers

  • @sheetanshudeepak8779
    @sheetanshudeepak8779 3 роки тому

    thanks sir

  • @Alpharabius99
    @Alpharabius99 3 роки тому

    How can we get the equation for curve?

  • @UddhikaIshara
    @UddhikaIshara 2 роки тому

    i got error saying " ImportError: cannot import name 'read_arguments' from partially initialized module 'popt' " could you please help?

  • @tawhidpranto3862
    @tawhidpranto3862 3 роки тому +1

    Thank you so much for explaining in details. Can you explain why you wrote a=%5.3f, b=%5.3f in line 28 of your code?

    • @PhysWhiz
      @PhysWhiz  3 роки тому

      It means it will print a floating point number with 5 characters, with 3 digits after the decimal point. It is just for formatting the output.

  • @shahinsharafi5062
    @shahinsharafi5062 3 роки тому

    I tried to do same code, however python did not sketch the curve for me !

  • @HS-ii9dj
    @HS-ii9dj 4 роки тому

    can I still use curve_fit if I have errors in x but not in y?

    • @PhysWhiz
      @PhysWhiz  4 роки тому

      Good question. curve_fit may not be the best choice in such a case. You may wanna try odr from scipy.

  • @HS-ii9dj
    @HS-ii9dj 4 роки тому +1

    Hi, would you be able to help me I'm trying to fit a curve_fit through my data but it's not working?

    • @PhysWhiz
      @PhysWhiz  4 роки тому

      Is the code running? Since the curve_fit method requires an initial guess, so that may be the reason if the optimization doesn't converge. You can try different values for initial guess.

    • @HS-ii9dj
      @HS-ii9dj 4 роки тому

      The code does run and give a straight line , I have guessed the slope and intercept do I also need a start_slope and start_intercept?

    • @PhysWhiz
      @PhysWhiz  4 роки тому

      You want to do a linear fit?

    • @HS-ii9dj
      @HS-ii9dj 4 роки тому

      yeah a linear one , shall i send you my code?

    • @PhysWhiz
      @PhysWhiz  4 роки тому

      Although the video is for non-linear fitting, you can still do linear fitting by modifying the func as:
      def func(x,m,c):
      return m*x+c

  • @BlueSkyGoldSun
    @BlueSkyGoldSun 2 роки тому

    Can we do this on real dataset?

    • @PhysWhiz
      @PhysWhiz  2 роки тому

      It depends on the amount of noise that your data might have. Also, if you have an idea about the what mathematical relationship should it follow.

  • @kartikanand6348
    @kartikanand6348 4 роки тому

    I would prefer you to speak in your original accent, please

  • @arslan809
    @arslan809 4 роки тому

    bhai tu gora nhe hy pr koshish poori kr rha hy k wsa boly mgr nhee
    You know, You know kam bola kr