Re: [R] Sizing axis labels in ggplot2

2013-12-03 Thread arun
Hi, Try: bp+theme(axis.text=element_text(size=14),axis.title=element_text(size=16,face="bold")) A.K. On Tuesday, December 3, 2013 9:41 PM, David Arnold wrote: All, Say I do: require(ggplot2) names(PlantGrowth) bp <- ggplot(PlantGrowth,aes(x=group,y=weight))+geom_boxplot() But the default

[R] Sizing axis labels in ggplot2

2013-12-03 Thread David Arnold
All, Say I do: require(ggplot2) names(PlantGrowth) bp <- ggplot(PlantGrowth,aes(x=group,y=weight))+geom_boxplot() But the default axis labels and tick labels are just too small for me to read. What is the easiest was to enlarge the font size of axis labels and tick labels? Thanks. D. -- Vi