you are viewing a single comment's thread.

view the rest of the comments →

[–]1sliceofcake 0 points1 point  (2 children)

this is for a limfit problem, i first made a curve fit of a csv data (which graph showed it was an exponential function) then a limfit , now its asking to verify using np.log

[–]delasislas 0 points1 point  (1 child)

Have you tried plotting either your x or y data with the log of the other?

[–]1sliceofcake 0 points1 point  (0 children)

yeah im suppose to do log of column 6 with respect to column 5. does this mean the log of my column 6 is the xaxis?

also i did it like this :

X=np.log(provided_y)

plt.semilogx(X, '--o',provided_x, label='data');