My data code is:
df <- data.frame(
group = c("NO", "H2O2"),
values = c(10,11)
)
df %>% ggplot(aes(x=group, y=values))+ geom_col(width = 0.5)+
theme_bw()
This plots a graph, like this:
I want both '2' in H2O2 as subscripts. How can this be done?