Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.7k
Adding a horizontal bar small multiples example#4995
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:doc-prod
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
An example of a Horizontal Bar Chart (Facet) is added.
I plan to use these data inplotly/plotly.py#4995These data are aggregated from the Estimates of Monthly Retail and Food Services Sales by Kind of Business: 2024https://www.census.gov/retail/sales.html including projected values for December
I plan to use these data inplotly/plotly.py#4995Ken Letzler aggregated these from the Estimates of Monthly Retail and Food Services Sales by Kind of Business: 2024https://www.census.gov/retail/sales.html including projected values for December. Thanks Ken!
@LiamConnors As soon as the Plotly team mergesplotly/datasets#63, I'll commit changes to use that data in this and the two other affected documentation PRs. Looking forward to getting your feedback on both the new data and new documentation! |
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Co-authored-by: Liam Connors <connorsl@tcd.ie>
@LiamConnors Thanks for the good suggestions, which we've accepted. Thanks@SimaRaha for your work on this example. |
Documentation PR
doc/README.md
filedoc-prod
branch OR it targets themaster
branchpx
example if at all possibleplotly.graph_objects as go
/plotly.express as px
/plotly.io as pio
df
fig = <something>
call is high up in each new/modified example (eitherpx.<something>
ormake_subplots
orgo.Figure
)fig.add_*
andfig.update_*
rather thango.Figure(data=..., layout=...)
in every new/modified examplefig.add_shape
andfig.update_xaxes
are used instead of bigfig.update_layout
calls in every new/modified examplefig.show()
is at the end of each new/modified exampleplotly.plot()
andplotly.iplot()
are not used in any new/modified exampleCode PR
plotly.graph_objects
, my modifications concern thecodegen
files and not generated files.modified existing tests.
new tutorial notebook (please see the doc checklist as well).
-->