You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The y scale range of my dataset is (-3, 3). When I set the yticks.by = 1, only the positive scales were changed, but not the negative scales.
Now, I have to use the following code to make it work.scale_y_continuous(breaks=c(-3,-2, -1,0, 1, 2, 3))
Any suggestions?
Thanks!
The text was updated successfully, but these errors were encountered:
The y scale range of my dataset is (-3, 3). When I set the
yticks.by = 1
, only the positive scales were changed, but not the negative scales.Now, I have to use the following code to make it work.
scale_y_continuous(breaks=c(-3,-2, -1,0, 1, 2, 3))
Any suggestions?
Thanks!
The text was updated successfully, but these errors were encountered: