-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
proposed addition of a df.agg stacked go.bar example #4546
Conversation
Thank you for sharing this, @rl-utility-man |
Co-authored-by: Liam Connors <connorsl@tcd.ie>
I've update my suggestions now @rl-utility-man . This looks good to me. I'm just working on resolving an issue with failing tests on the https://github.com/plotly/graphing-library-docs/ (which is where the docs are built from) and I'll merge this after. |
Looks great! Much appreciated! |
@LiamConnors Your revisions look great. Is there anything I can do to help get this or #4557 merged? The failing dev_build test reports "ImportError: cannot import name 'Config' from 'pytest'" |
Thanks @rl-utility-man. Sorry for the delay. |
### Documentation PR
doc/README.md
filedoc-prod
branch OR it targets themaster
branchpx
example if at all possiblewe want to show the DF agg; I can move some of the other spadework to separate hidden files if needbe
plotly.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).
-->