I have a ggplot:
ggplot()+geom_line(data = data.frame(y = c(1,2,3), x=c(1,2,3)), aes(y=y,x=x))
I want to keep the default axis breaks and labels (In my program, I do not know the limits of the plot a priori.)
At x= 1.5 I want to add an additional tick mark to the x-axis with label "hi".
I know about scale_x_continuous(), but I do not know how to access the "default breaks computed by the transformation object".
