Skip to content

Commit

Permalink
Fixing case where Int-casted group names are not being treated as str…
Browse files Browse the repository at this point in the history
…ings
  • Loading branch information
adkinsrs committed Aug 12, 2024
1 parent cfcfb33 commit 64407f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gear/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def generate_plot(df, x=None, y=None, z=None, facet_row=None, facet_col=None,
# Each individual trace is a separate scalegroup to ensure plots are scaled correctly for violin plots
new_plotting_args['scalegroup'] = name
if isinstance(name, tuple):
new_plotting_args['scalegroup'] = "_".join(name)
new_plotting_args['scalegroup'] = "_".join(str(name))

# If color dataseries is present, add some special configurations
if color_name:
Expand Down

0 comments on commit 64407f9

Please sign in to comment.