I have data organised as in this example:
data1 <- tibble(seq = factor(1:20),
value = rnorm(20, 10, 2),
par_a = c(rep("S1", 6), rep("S2", 14)),
par_b = c(rep("B1", 18), rep("S2", 2))
)
X axis value, and parameters for category overlines will be categorical. seq will be about 50 unique values. Both parameters will have 2, 3 or 4 possible values. Y axis value is continuous.
I'm looking for package that will allow me to make plot like tis 
I saw it made with ggplot once so I assume there might be package that allows to do it. Unfortunately I'm unable to find which package it is.
Radek
