The following code use to work pre-version .9 of ggplot2. Is this not possible anymore?
df = data.frame(x = letters[1:26], y=abs(rnorm(26))) ggplot(df, aes(x=x,
I don't know (don't remember) if your original used to work with old version of ggplot but you can use an another approach like this one :
ggplot(df, aes(x=x, y=y)) + geom_bar() + geom_vline(xintercept=which(df$x == 'm'))
Hope this help !!!