-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aspect ratio not honored #367
Comments
|
@wdwatkins when you make examples, can you make sure they are reproducible for us? I think that just means you need to include |
not sure that |
That also moves the tick marks though. I'm trying to keep the original ticks, and only add labels. To get something like this: I'm using this method: http://stackoverflow.com/questions/7530933/placing-the-x-axis-labels-between-period-ticks. Maybe there's a better option though. |
@wdwatkins do you want: set.seed(2576)
X <- runif(33)
Y<-seq(0,2,length.out = 33)
gs <- gsplot() %>% points(X, Y, axes=FALSE ) %>% axis(side=c(1:4), labels=FALSE)
gs That would be my suggestion for what you are doing...unfortunately, that doesn't actually work as expected for me: This seems like a bug, right @lindsaycarr ? |
See #370 |
|
Saving for later because it's complicated (asp tells us to ignore one of the axis' limits) and not useful for repgen. Would be nice to have for ease of meeting SPN compliance. |
The
asp
argument is not being honored in plotting function calls.Produces this:
asp=1
should produce 1:1 axes.The text was updated successfully, but these errors were encountered: