Answers for "change axis ggplot2"

R
0

ggplot2 change axis limits

ggplot(mtcars, aes(mpg, wt)) +
  geom_point() +
  xlim(20, 15)
Posted by: Guest on March-25-2020
1

change label x axis ggplot2

theme(
  axis.title = element_text(),         # Change both x and y axis titles
  
  axis.title.x = element_text(),       # Change x axis title only
  axis.title.x.top = element_text(),   # For x axis label on top axis
  
  axis.title.y = element_text(),       # Change y axis title only
  axis.title.y.right = element_text(), # For y axis label on right axis
)
Posted by: Guest on July-19-2020

Browse Popular Code Answers by Language