How can I use an ampersand in a facet strip label? I have tried as is, and using unicode with the same result.
MWE
library(ggplot2)
mtcars$am2 <- factor(mtcars$am, labels=c("N[one]==1 \U0026 N[one]==1",
"N[two]==2 & N[two]==2"))
ggplot(mtcars, aes(mpg, wt)) +
facet_grid(. ~ am2, labeller = label_parsed)
I am using Windows 7 , R3.4.4. Thanks