Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
include logx for df.plot() #2327
Comments
|
Usefull indeed. ax = df.plot(logy=True)
ax.set_xscale('log') |
danielballan
referenced
this issue
Dec 19, 2012
Closed
logx for DataFrame.plot() and Series.plot() #2565
wesm
closed this
Dec 28, 2012
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
zachcp commentedNov 22, 2012
I often use scatterplots to show data and if these data are over a range of values it is useful to have a log-log scale. Right now the default df.plot() function supports a logy=True argument but not a logx=True.
I think a logx argument in the plotting function would be a useful addition.