From 857a4881e2a0360824f43b03414a168736e2f726 Mon Sep 17 00:00:00 2001 From: Joe Numainville Date: Thu, 19 Dec 2024 09:33:25 -0600 Subject: [PATCH] wip --- plugins/plotly-express/docs/histogram.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/plotly-express/docs/histogram.md b/plugins/plotly-express/docs/histogram.md index e44ab40d5..7a9bf4fd1 100644 --- a/plugins/plotly-express/docs/histogram.md +++ b/plugins/plotly-express/docs/histogram.md @@ -49,7 +49,8 @@ hist_8_bins = dx.histogram(setosa, x="SepalLength", nbins=8) ### Bin and aggregate on different columns -If both `x` and `y` are specified, the histogram will be binned across one column and aggregated on the other. +If the plot orientation is vertical (`"v"`), the `x` column is binned and the `y` column is aggregated. The operations are flipped if the plot orientation is horizontal. + ```python order=hist_v,hist_h,hist_avg,iris import deephaven.plot.express as dx