Skip to content

⚡️ Speed up function _is_flipped by 8% #113

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions plotly/figure_factory/_facet_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,8 @@


def _is_flipped(num):
if num >= THRES_FOR_FLIPPED_FACET_TITLES:
flipped = True
else:
flipped = False
return flipped
# Return True if num is above/equal to threshold, otherwise False.
return num >= THRES_FOR_FLIPPED_FACET_TITLES


def _return_label(original_label, facet_labels, facet_var):
Expand Down