-
-
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
[WIP] Add ECDF plot to figure factory #2765
Conversation
Hi @nicolaskruchten, I decided to go ahead and give this a shot, as discussed here. In its current state pretty much all the functionality that I would want is here, but I haven't yet added tests or docs beyond some examples in the docstring. I wanted to get some quick feedback before sinking too much more time into this so I don't go down a wrong path for too long. One thing I want to run by you is that right now I have this set up to require a pandas dataframe input. With some extra work I could enable passing arrays/lists in instead of a pandas dataframe, since this is basically a small wrapper around the plotly.express.line function. Would you recommend adding that functionality in, or do most users just use dataframes anyway? Also should I add some additional docs beyond examples in the docstring? I'll definitely add tests. Any other substance or style feedback would be appreciated. Thanks in advance! |
Great to see this PR, thank you! I'll try to review it today or tomorrow and give you feedback :) The next release of Plotly.py should come by the end of the month 🤞 so if we can get this merged by then it can be part of version 4.11! |
It's your call, I'll accept the PR with or without non-pandas support, but it'll likely get more usage with a broader regime of input formats
Tests are definitely needed, and ideally we'd put together a special documentation page for this figure factory, much like the one that was made for the #2559 PR. This entails creating a Markdown file in the
I'll dig into things a bit more but off the cuff: Plotly.py still supports older versions of Python (i.e. 2.7!) so we can't use cool new features like type annotations and f-strings etc unfortunately. |
@nicolaskruchten Thanks for the feedback! In the latest commit I got Next up I'll add some tests and try to figure out and fix the failing checks. After that, whenever that is, I'll work on getting some examples together for the Jupytext stuff. EDIT: Actually I can't figure out how to see the circleci logs...clicking on Details takes me to a login page to try to set up a new config. I'd appreciate any pointers. Haven't used circleci before. |
OK, I can see the CircleCI logs now, and it lookw like both the python-2.7-optional and python-3.5-optional tests are failing because of this:
I thought |
That's weird indeed! |
Hi @benlindsay and happy new year! After looking at this some more, and thinking about how to do better than |
That's great! I haven't had time to keep working on this lately, so I'm glad to see you'll continue on with it and that it will be part of plotly.express proper :) I keep using my minimal plotly-ecdf and wishing I had time to come back to this |
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).