专栏名称: R语言和统计
我们定期更新与R有关的内容,比如R编程基础,作图,实用R包的解读,统计学基础知识,前沿的统计方法,机器学习等等。
目录
今天看啥  ›  专栏  ›  R语言和统计

只会{ggplot2}作图不太够,快来试试这个“牛图”—— {cowplot}!

R语言和统计  · 公众号  ·  · 2024-07-01 17:49

文章预览

今天小编介绍一个超实用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 ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览