So when I make plots sometimes I see the y crossing x at some offset. I generated this figure using:
ggplot(data=d2,aes(y=log10(Nems+1),x=Time)) +
geom_point(size=3,shape=1) +
geom_line(data=d2,aes(x=time_model,y=log10(value),group=variable,linetype=variable)) +
ylim(0.001,2) + no_bg + draw_axis
I end up manually moving the y in Illustrator. Is there a way to just do it here?