The following examples are now basically consistent.
During testing I discovered https://github.com/deephaven/deephaven-plugins/issues/1001 so the legend titles are not set in a couple of these, but that is beyond the scope of this ticket as that is a general plot by issue, not a histogram specific one.
Note a few intentional differences in the args. It's not expected that dx histograms and px histograms aggregate in the same exact way. Plotly infers the equivalent of range_bins hence the extra argument. Additionally we have barmode="group" as our default whereas in Plotly it is barmode="relative". I believe this was an intentional choice on our end because it's hard to compare the different traces with barmode="relative" although I don't have a record of it.
Fixes: #668
The following examples are now basically consistent. During testing I discovered https://github.com/deephaven/deephaven-plugins/issues/1001 so the legend titles are not set in a couple of these, but that is beyond the scope of this ticket as that is a general plot by issue, not a histogram specific one.
Note a few intentional differences in the args. It's not expected that
dx
histograms andpx
histograms aggregate in the same exact way. Plotly infers the equivalent ofrange_bins
hence the extra argument. Additionally we havebarmode="group"
as our default whereas in Plotly it isbarmode="relative"
. I believe this was an intentional choice on our end because it's hard to compare the different traces withbarmode="relative"
although I don't have a record of it.