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
I am trying to make a bar plot of Earthquakes per day
How do I control the dates listed on the x axis?
df.hvplot.bar(y = count, title = 'Earthquakes per Day', ylabel = 'Count', xlabel = 'Date')
The text was updated successfully, but these errors were encountered:
Maybe error bars as a workaround?
import pandas as pd import hvplot.pandas # Create a DataFrame with datetime index data = {"Values": range(100)} index = pd.date_range("2022-01-01", periods=100, freq="D") df = pd.DataFrame(data, index=index) df["Zero"] = 0 # Create a bar chart errorbars = df.hvplot.errorbars(y="Values", yerr1="Values", yerr2="Zero") errorbars
Sorry, something went wrong.
xrotation=90?
xrotation=90
Okay, finally sat down and made a start on continuous bar charts: holoviz/holoviews#6145
No branches or pull requests
I am trying to make a bar plot of Earthquakes per day
How do I control the dates listed on the x axis?
Stack traceback and/or browser JavaScript console output
Screenshots or screencasts of the bug in action
The text was updated successfully, but these errors were encountered: