Skip to content

Commit 07cc740

Browse files
wip
1 parent 28ae48b commit 07cc740

File tree

1 file changed

+8
-2
lines changed
  • packages/python/plotly/plotly/express

1 file changed

+8
-2
lines changed

packages/python/plotly/plotly/express/_core.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -1845,6 +1845,14 @@ def infer_config(args, constructor, trace_patch, layout_patch):
18451845
):
18461846
args["facet_col_wrap"] = 0
18471847

1848+
if "norm" in args:
1849+
if args.get("norm", None) not in [None, "percent", "probability"]:
1850+
raise ValueError(
1851+
"`norm` must be one of None, 'percent' or 'probability'. "
1852+
+ "'%s' was provided." % args["norm"]
1853+
)
1854+
args["histnorm"] = args["norm"]
1855+
18481856
# Compute applicable grouping attributes
18491857
for k in group_attrables:
18501858
if k in args:
@@ -2072,8 +2080,6 @@ def make_figure(args, constructor, trace_patch=None, layout_patch=None):
20722080
group[var] = group[var] / group_sum
20732081
elif args["norm"] == "percent":
20742082
group[var] = 100.0 * group[var] / group_sum
2075-
args["histnorm"] = args["norm"]
2076-
# TODO norm, including histnorm-like naming
20772083

20782084
patch, fit_results = make_trace_kwargs(
20792085
args, trace_spec, group, mapping_labels.copy(), sizeref

0 commit comments

Comments
 (0)