Answers for "increase tick mark labels in ggplot2"

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
0

change tick size ggplot

ggplot(data, aes(x,y)) + 
    geom_point() + 
    theme(axis.ticks.length=unit(.25, "cm"))
Posted by: Guest on May-29-2021

Browse Popular Code Answers by Language