We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hist
logx
If creating a histogram with logx=True, the buckets will be created in the original scale instead of the logarithmic scale:
logx=True
import numpy as np, polars as pl import hvplot.polars rng = np.random.default_rng(seed=123) df = pl.DataFrame({ "x": 10. ** rng.standard_normal(size=100) }) df.hvplot.hist(logx=True)
This should produce buckets like these, but with the x-axis labels and ticks reflecting the original scale:
( df .with_columns( pl.col("x").log10() ) .hvplot.hist() )
The text was updated successfully, but these errors were encountered:
I believe this is an HoloViews issue.
Potentially related to: holoviz/holoviews#6145
Sorry, something went wrong.
No branches or pull requests
If creating a histogram with
logx=True
, the buckets will be created in the original scale instead of the logarithmic scale:This should produce buckets like these, but with the x-axis labels and ticks reflecting the original scale:
The text was updated successfully, but these errors were encountered: