library(ggplot2)
# make all text larger
ggplot(mtcars, aes(mpg, hp)) +
geom_point() +
easy_all_text_size(22)
# also works if accidentally using easy_text_size(n)
# make the x and y axis text larger
ggplot(mtcars, aes(mpg, hp)) +
geom_point() +
easy_text_size(c("axis.text.x", "axis.text.y"), 22)
# make the x axis labels larger
ggplot(mtcars, aes(mpg, hp)) +
geom_point() +
easy_x_axis_labels_size(22)
# make the plot title larger
ggplot(mtcars, aes(mpg, hp)) +
geom_point() +
labs(title = "My Plot") +
easy_plot_title_size(22)
# make the legend title larger
ggplot(mtcars, aes(mpg, hp)) +
geom_point(aes(fill = gear)) +
easy_plot_legend_title_size(22)
# make all the text red
ggplot(mtcars, aes(mpg, hp)) +
geom_point(aes(fill = gear)) +
easy_all_text_color("red")
# make all the text 45 degrees, right-justified
ggplot(mtcars, aes(mpg, hp)) +
geom_point(aes(fill = gear)) +
easy_change_text(what = "angle", to = 45) +
easy_change_text(what = "hjust", to = 1)
# make just x-axis text 45 degrees, right-justified
ggplot(mtcars, aes(mpg, hp)) +
geom_point(aes(fill = gear)) +
easy_change_text(which = "axis.text.x", what = "angle", to = 45) +
easy_change_text(which = "axis.text.x", what = "hjust", to = 1)
Run the code above in your browser using DataLab