Answers for "how to change tick labels in ggplot"

R
1

size of ticks labels in r ggplot

# Changer l'apparence et l'angle d'orientation des étiquettes
p + theme(axis.text.x = element_text(face="bold", color="#993333", 
                           size=14, angle=45),
          axis.text.y = element_text(face="bold", color="#993333", 
                           size=14, angle=45))
Posted by: Guest on August-03-2020

Browse Popular Code Answers by Language