Skip to content

include logx for df.plot() #2327

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

include logx for df.plot() #2327

zachcp opened this issue Nov 22, 2012 · 1 comment
Milestone

Comments

@zachcp
Copy link

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.

@lodagro
Copy link
Contributor

lodagro commented Nov 22, 2012

Usefull indeed.
Easy to work around.

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

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

No branches or pull requests

3 participants