I am trying to rename the group names in a stripchart. I have tried using bquote and expression, but ran into the same problem. Everything within the brackets following expression is printed as a group label without formatting (so in the example below I am getting a label that reads "Delta ~ "Group1"".
I've tried combining expression and paste, but that gave me a label that read "paste(Delta, "Group1")".
stripchart(Df$value~Df$Treatment ,
vertical = TRUE,
group.names = c(expression(Delta ~ "Group1"), "Group2"),