So far I have this:
hist <- ggplot(Mydf, aes(x=Mydf$Avg.CPC))
breaks <- c(min(Mydf$Avg.CPC), median(Mydf$Avg.CPC), max(Mydf$Avg.CPC))
h <- hist + geom_bar(binwidth = 0.025, colour = "black", breaks = breaks)
print(h)
I get an error. It doesn't like having different widths. I would also like to have the Q1 and Q3 quartiles as breaks while I am at it. Is that not possible? I think it is called a violin plot. Thanks