Skip to content
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

Example 2 for Butterfly chart (version2) #4984

Open
wants to merge 6 commits into
base: doc-prod
Choose a base branch
from

Conversation

SimaRaha
Copy link

Please uncomment this block and take a look at this checklist if your PR is making substantial changes to documentation/impacts files in the doc directory. Check all that apply to your PR, and leave the rest unchecked to discuss with your reviewer! Not all boxes must be checked for every PR :)

If your PR modifies code of the plotly package, we have a different checklist
below :-).

Documentation PR

  • I've seen the doc/README.md file
  • [ Yes] This change runs in the current version of Plotly on PyPI and targets the doc-prod branch OR it targets the master branch
  • [ N/A instead used plotly.graph_objects ] If this PR modifies the first example in a page or adds a new one, it is a px example if at all possible
  • Every new/modified example has a descriptive title and motivating sentence or paragraph
  • [ Yes] Every new/modified example is independently runnable
  • [ Yes] Every new/modified example is optimized for short line count and focuses on the Plotly/visualization-related aspects of the example rather than the computation required to produce the data being visualized
  • Meaningful/relatable datasets are used for all new examples instead of randomly-generated data where possible
  • [Yes ] The random seed is set if using randomly-generated data in new/modified examples
  • [ Yes] New/modified remote datasets are loaded from https://plotly.github.io/datasets and added to https://github.com/plotly/datasets
  • Large computations are avoided in the new/modified examples in favour of loading remote datasets that represent the output of such computations
  • [Yes ] Imports are plotly.graph_objects as go / plotly.express as px / plotly.io as pio
  • Data frames are always called df
  • [ Yes] fig = <something> call is high up in each new/modified example (either px.<something> or make_subplots or go.Figure)
  • [Yes ] Liberal use is made of fig.add_* and fig.update_* rather than go.Figure(data=..., layout=...) in every new/modified example
  • [ Yes] Specific adders and updaters like fig.add_shape and fig.update_xaxes are used instead of big fig.update_layout calls in every new/modified example
  • [ Yes] fig.show() is at the end of each new/modified example
  • [ Yes] plotly.plot() and plotly.iplot() are not used in any new/modified example
  • [ Yes] Hex codes for colors are not used in any new/modified example in favour of these nice ones

Code PR

  • I have read through the contributing notes and understand the structure of the package. In particular, if my PR modifies code of plotly.graph_objects, my modifications concern the codegen files and not generated files.
  • I have added tests (if submitting a new feature or correcting a bug) or
    modified existing tests.
  • For a new feature, I have added documentation examples in an existing or
    new tutorial notebook (please see the doc checklist as well).
  • I have added a CHANGELOG entry if fixing/changing/adding anything substantial.
  • For a new feature or a change in behaviour, I have updated the relevant docstrings in the code to describe the feature or behaviour (please see the doc checklist as well).

-->

@SimaRaha SimaRaha marked this pull request as draft January 26, 2025 15:57
@SimaRaha
Copy link
Author

Hi Greg and Liam,

I've converted this pull request to a draft as we're still working on finalizing some aspects. I'll let you know once it's ready for review.

@gvwilson gvwilson requested a review from LiamConnors February 3, 2025 15:41
@gvwilson gvwilson added P2 considered for next cycle community community contribution documentation written for humans labels Feb 3, 2025
@rl-utility-man
Copy link
Contributor

rl-utility-man commented Feb 6, 2025

This is a continuation of #4994
I rebased the git commit to make this readable and erased the history, but @SimaRaha built a complete example and had the key insight about using a secondary x axis with a separate domain.

@gvwilson
Copy link
Contributor

@LiamConnors can you please review for the Plotly.py 6.1 release?

Comment on lines +228 to +229
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/refs/heads/master/gss_2002_5_pt_likert.csv')
df.rename(columns={'Unnamed: 0':"Category"}, inplace=True)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason to rename the column here rather in the dataset? Is that just how the dataset was?

Copy link
Contributor

@rl-utility-man rl-utility-man Apr 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a shortcoming of the data set. I just proposed a PR to label the column properly in the data set plotly/datasets#64 A search of github shows no uses of that data set other than in this PR and #4994, so it appears safe to accept that PR. (I uploaded this data set recently in plotly/datasets#62 )

Comment on lines +235 to +236

fig = go.Figure()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it be possible to put more of the layout and data in the go.Figure object. I think update_layout and other can be a bit more challenging to understand for a user.

Comment on lines +221 to +222
Diverging bar charts offer two imperfect options for responses that are neither positive nor negative: put them in a separate column, as in this example or omit them as in the example above. That leaves the unreported neutral value implicit when the categories add to 100%, Jonathan Schwabish discusses this on page 92-97 of _Better Data Visualizations_.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Diverging bar charts offer two imperfect options for responses that are neither positive nor negative: put them in a separate column, as in this example or omit them as in the example above. That leaves the unreported neutral value implicit when the categories add to 100%, Jonathan Schwabish discusses this on page 92-97 of _Better Data Visualizations_.
The previous diverging bar chart example excluded neutral responses. Another option, as shown in this example, is to include them in a separate column.

I think the content around "unreported neutral values" refers the previous example? If so, I think that would be more relevant there. Also, from documentation, I'd prefer not to direct users to additional resources that they may not have access to.

Comment on lines +268 to +270
legendrank=legend_rank_by_category[col],
xaxis=f"x{1+(col=="Neither Agree nor Disagree")}", # in this context, putting "Neither Agree nor Disagree" on a secondary x-axis on a different domain
# yields results equivalent to subplots with far less code
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The example doesn't run for me, and I believe it's related to setting of the xaxis here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
community community contribution documentation written for humans P2 considered for next cycle
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants