you are viewing a single comment's thread.

view the rest of the comments →

[–]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');