Histogram in R with groups using Lattice/Mosaic?

84 Views Asked by At

I am trying to make a histogram with two groups: one where (x<60 || x>100), and one where that condition is false.

Basically like this: histogram with vertical bars and colored groups

update 2023.08.03 - - - - - - -

This code is exactly what I want, but the color seems to be leaking between the lines:

histogram(~pulse, data = data, v = c(60,100), breaks = c(seq(from=40,to=140,by=20)), type = "percent", groups = ((pulse >= 100) | (pulse <= 60)))

histogram with vertical lines at 60 and 100, orange outside the lines and blue inside with some orange in the blue bars image

I tried:

histogram(~pulse, data = data, v = 100,
    breaks = c(seq(from=40,to=140,by=20)),
    type = "percent", groups = (pulse >= 100))
histogram(~pulse, data = data, v = num,
    breaks = c(40,60,80,num,120,140),
    type = "percent", groups = (pulse >= 100))
histogram(~pulse, data = data, v = 100,
    breaks = c(seq(from=40,to=140,by=10)),
    type = "percent", groups = (pulse >= 100))
histogram(~pulse, data = data, v = 100,
    type = "percent", groups = (pulse >= 100))

If you have any ideas please let me know! I'm really hoping to stick to Lattice since I already have quite a few of these typed out ':)

end of update - - - - - - -

   

I tried this code but it gives me an error:

histogram(~pulse, data=data, type="percent", breaks=10, labels = TRUE, groups = (pulse > 60))
  • Error using packet 1
  • 'x' and 'units' must have length > 0

 

This code works, but it is only half of what I want:

set.seed(123)
var <- rnorm(700, 0, 0.25)
df <- as.data.frame(var)
num <- 0.5
histogram(~var, data = df, v = num, width = 0.2, type = "percent", groups = (var >= num))

My output: histogram with vertical line that splits it into blue and orange image

 

I have vague ideas of messing with panel or panel.superpose or maybe allow.multiple?

 

If this is relevant, here is my session info and more on the first histogram:

R version 4.3.0 (2023-04-21 ucrt) -- "Already Tomorrow"
Platform: x86_64-w64-mingw32/x64 (64-bit)

histogram variables image

0

There are 0 best solutions below