theme_white_f is a ggplot2 theme function that can be added to a ggplot2 object to eliminate axes, ticks and put white backgroundbasesize
ggplot(mtcars, aes(wt, mpg)) + geom_point() + theme_minimal() + theme(axis.tick.x = element_line(colour = "pink", size = 4)) It seems these might actually not work in only three cases in which case I would suggest just updating the two themes, classic and minimal, by declaring...
This post continues with the theme of how to modify plots from within ggplot; today we will specifically looking at custom axis breaks. Plots later in the week will examine the commands to change text in the plot area. The various other shortcomings o...
theme_graph() + theme(legend.position = "none") Plotting the solution with normal ‘ggplot2’ is possible, though takes a bit more work. All of the code is shown below, but since it is a bit more in the weeds, I did’t explain each step. I did add comments to help those who a...