Skip to content

Commit 4f7b304

Browse files
wip
1 parent 716fa66 commit 4f7b304

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
@@ -1850,6 +1850,14 @@ def infer_config(args, constructor, trace_patch, layout_patch):
18501850
):
18511851
args["facet_col_wrap"] = 0
18521852

1853+
if "norm" in args:
1854+
if args.get("norm", None) not in [None, "percent", "probability"]:
1855+
raise ValueError(
1856+
"`norm` must be one of None, 'percent' or 'probability'. "
1857+
+ "'%s' was provided." % args["norm"]
1858+
)
1859+
args["histnorm"] = args["norm"]
1860+
18531861
# Compute applicable grouping attributes
18541862
for k in group_attrables:
18551863
if k in args:
@@ -2077,8 +2085,6 @@ def make_figure(args, constructor, trace_patch=None, layout_patch=None):
20772085
group[var] = group[var] / group_sum
20782086
elif args["norm"] == "percent":
20792087
group[var] = 100.0 * group[var] / group_sum
2080-
args["histnorm"] = args["norm"]
2081-
# TODO norm, including histnorm-like naming
20822088

20832089
patch, fit_results = make_trace_kwargs(
20842090
args, trace_spec, group, mapping_labels.copy(), sizeref

0 commit comments

Comments
 (0)