You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some data that I'd like to histogram over two grouping factors. The histograms should be compared vertically, so I'd like to apply datalimits only when grouping on variable in the example below. When datalimits is applied on both grouping factors, the histograms are harder to compare because of the outliers.
I'd like to be able to use only the factor f2 for the grouping when computing the extrema in datalimits. Unfortunately, I'm not sure how the better way of specifying the preferred behavior would look like, though. Any ideas?
The text was updated successfully, but these errors were encountered:
I've looked into this briefly and I didn't see an easy way to pull the information about the grouping into the datalimits computation, the positional arguments of the ProcessedLayer are already split into 2x2 = 4 length vectors. Would need a larger internal refactor I think.
However, I did think of another solution, which is not as elegant maybe, but simple and functional. You layer two data sets where you filter for the groups you want, then you don't specify datalimits to sync each of them:
Problem description
I have some data that I'd like to histogram over two grouping factors. The histograms should be compared vertically, so I'd like to apply
datalimits
only when grouping onvariable
in the example below. Whendatalimits
is applied on both grouping factors, the histograms are harder to compare because of the outliers.Figure
Source
Proposed solution
I'd like to be able to use only the factor
f2
for the grouping when computing theextrema
indatalimits
. Unfortunately, I'm not sure how the better way of specifying the preferred behavior would look like, though. Any ideas?The text was updated successfully, but these errors were encountered: