include logx for df.plot() #2327

Closed
zachcp opened this Issue Nov 22, 2012 · 1 comment

Comments

Projects
None yet
3 participants
Contributor

zachcp commented Nov 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.

Contributor

lodagro commented Nov 22, 2012

Usefull indeed.
Easy to work around.

ax = df.plot(logy=True)
ax.set_xscale('log')

wesm closed this Dec 28, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment