-
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
minor ticks aren't inheriting pars #437
Comments
Also:
side's 3 and 4 ticks aren't logged (and should be). |
☝️ @ldecicco-USGS I'm assuming this is example is something to do with #436 ? |
They might be related, but that issue is specific to the date_axis. |
Actually, that second example I posted has nothing to do with minor ticks. This:
Shows a linear axis on 3 and 4 (and log on 1, 2). I would expect 3 and 4 to be logged if no other call to 3 & 4 are defined. |
Yeah, that second example seems like a second issue. |
Yup, making a new issue. |
I'm seeing logged ticks now, but still seeing minor ticks on the inside instead of outside: gsplot(frame.plot=FALSE) %>%
background_color(col="grey90") %>%
grid(col = "white", lty = 1) %>%
par(tcl=-0.2, cex=0.75, xaxs= "r", yaxs = "r") %>%
axis(side = c(1,2), lwd = 0, lwd.ticks = 1, n.minor=1) gs <- gsplot() %>%
points(1:100, 1:100, log="xy") %>%
axis(side=c(3,4), n.minor=4) %>%
axis(side=c(1,2), n.minor=4)
gs |
#436 seems to duplicate the remaining bug here. @ldecicco-USGS @jiwalker-usgs please verify this. |
Wait, I did this earlier in this thread.... @ldecicco-USGS concluded that they were not the same. Sorry. |
@ldecicco-USGS we have an arg called gsplot() %>%
grid(col = "white", lty = 1) %>%
par(tcl=-0.2, cex=0.75, xaxs= "r", yaxs = "r") %>%
axis(side = c(1,2), lwd = 0, lwd.ticks = 1, n.minor=1, tcl.minor=-0.2) |
Default |
Thought this would be relatively simple. issues I see here:
points(gsplot(), 1, 0, tcl = -0.5) %>% axis(side=1)
#differs from
points(gsplot(), 1, 0) %>% axis(side=1, tcl = 0.5)
|
closed with #460 |
Should have the minor tick marks going outside, shows up inside:
The text was updated successfully, but these errors were encountered: