文章预览
今天小编介绍一个超实用R包 {cowplot} ,包含很多功能,可以快速提高大家的作图技巧 。 第一步,安装并载入R包: install.packages( "cowplot" ) library (cowplot) library (ggplot2) # 需提前安装:install.packages("ggplot2") 第二步,示范数据准备。从R自带数据集diamonds中抽取500行,作为后续画图的数据: set.seed( 1112 ) mydata 500 ), ] summary(mydata) 首先,介绍R包 {cowplot} 中包含的几种图片主题。 先画一个默认 { ggplot } 风格的箱形图: set.seed( 1 ) p1 geom_boxplot() + geom_jitter(width = 0.2 ) + theme(legend.position = "none" ) p1 再来,使用 {cowplot} 中的几个 theme_*() 函数画图: p2 geom_jitter() + theme_cowplot() + theme(legend.position = "none" ) p2 p3 geom_histogram(colour = "grey" ) + theme_half_open() p3 p3_1 geom_histogram(colour = "grey" ) + theme_half_open() + background_grid() + theme(axis.text.x = elemen
………………………………