Nothing
## Generally it is better to use the guide_prism_minor function.
## However annotation_ticks is useful in a few specific situations.
library(ggplot2)
## easily put ticks without labels around a plot with a border
ggplot(mtcars, aes(x = mpg, y = disp)) +
geom_point() +
theme_prism(border = TRUE) +
coord_cartesian(clip = "off") +
annotation_ticks(sides = "tr", type = "major", outside = TRUE) +
theme(plot.margin = unit(c(4, 4, 4, 4), "mm"))
# the same but with minor ticks as well
ggplot(mtcars, aes(x = mpg, y = disp)) +
geom_point() +
scale_x_continuous(guide = "prism_minor") +
scale_y_continuous(guide = "prism_minor") +
theme_prism(border = TRUE) +
coord_cartesian(clip = "off") +
annotation_ticks(sides = "tr", type = "both", outside = TRUE) +
theme(plot.margin = unit(c(4, 4, 4, 4), "mm"))
# you can adjust the appearance of annotation_ticks
ggplot(mtcars, aes(x = mpg, y = disp)) +
geom_point() +
theme_prism(border = TRUE) +
coord_cartesian(clip = "off") +
annotation_ticks(
sides = "tr",
type = "major",
outside = TRUE,
tick.length = unit(10, "pt"),
colour = "red",
linewidth = 2,
linetype = "dashed",
lineend = "round"
) +
theme(plot.margin = unit(c(4, 4, 4, 4), "mm"))
## Unfortunately, due to the way they work, secondary axes don't always play
## well with the minor tick axes guides in this package.
## So we can use annotation_ticks instead.
sample.data <- data.frame(
day = as.Date("2019-01-01") + 0:99,
temperature = runif(100) + seq(1, 100)^2.5 / 10000,
price = runif(100) + seq(100, 1)^1.5 / 10
)
# sample graph with secondary axis
ggplot(sample.data, aes(x = day)) +
geom_line(aes(y = temperature), colour = "magenta") +
geom_line(aes(y = price / 10), colour = "blue") +
scale_y_continuous(sec.axis = sec_axis(~. * 10, name = "price")) +
theme_prism(border = TRUE) +
coord_cartesian(clip = "off")
# guide_prism_minor only works with the main axis in this case
ggplot(sample.data, aes(x = day)) +
geom_line(aes(y = temperature), colour = "magenta") +
geom_line(aes(y = price / 10), colour = "blue") +
scale_y_continuous(
sec.axis = sec_axis(~. * 10, name = "price"),
guide = "prism_minor"
) +
theme_prism(border = TRUE) +
coord_cartesian(clip = "off")
# we use annotation_ticks to draw the minor ticks on the secondary axis
ggplot(sample.data, aes(x = day)) +
geom_line(aes(y = temperature), colour = "magenta") +
geom_line(aes(y = price / 10), colour = "blue") +
scale_y_continuous(
sec.axis = sec_axis(~. * 10, name = "price"),
guide = "prism_minor"
) +
theme_prism(border = TRUE) +
coord_cartesian(clip = "off") +
annotation_ticks(sides = "r", type = "minor", outside = TRUE)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.