R语言绘图速查手册(58图)

图目录:

  1. 基本散点图;200 个正态分布的随机数
  2. point 散点图;200 个正态分布的随机数
  3. geom_point 散点图;200 个正态分布的随机数
  4. 基本折线图;10 个正态分布的随机数
  5. lines() 折线图;刹车速度与滑行距离的关系
  6. geom_line() 连接观测值;美国人口失业情况折线图
  7. barplot() 基本条形图;统计泊松分布随机数
  8. barplot() 堆栈式条形图;分年龄的人口信息被叠加在一起
  9. barplot() 按分类依次排列的条形图
  10. geom_bar() 基本条形图
  11. geom_bar() 堆栈式条形图
  12. geom_bar() 依次排列式条形图
  13. geom_bar() 比列式条形图
  14. polygon() 密度图
  15. polygon() 面积堆积图
  16. geom_area() 堆积面积图
  17. 密度估计图
  18. 两个核密度估计图
  19. geom_density() 核密度估计图
  20. 用 Graphics 函数画频率图
  21. geom_freqpoly() 频率图
  22. hist() 直方图
  23. geom_hist() 直方图
  24. boxplot() 箱线图
  25. geom_boxplot() 箱线图
  26. 错误的 error bar 箱线图
  27. 带 error bar 的箱线图
  28. vioplot() 提琴图
  29. geom_violin() 提琴图
  30. 添加箱线图信息的提琴图
  31. 添加均值和标准差信息的提琴图
  32. dotchart() 绘制 Cleveland 点图
  33. geom_dotplot() 绘制 Cleveland 点图
  34. 用 heatmap() 绘制热图
  35. geom_tile() 绘制热图
  36. pheatmap() 绘制热图
  37. 主成分分析图
  38. 基本层次聚类图
  39. dendrograms() 绘制层次聚类图
  40. plot.phylo() 绘制层次聚类图
  41. graphics 包里如何添加图片标题
  42. ggplot2 包里如何添加图片标题
  43. par() 函数 mfrow 设置多个图片同个画布
  44. layout() 设置多个图片同个画布
  45. cowlplot::ggdraw() 设置多个图片同 个画布
  46. gridExtra::grid.arrange() 设置多个图片同个画布
  47. barplot() 水平显示条形图
  48. coord_ ip() 水平显示直方图
  49. theme_grey() 背景
  50. theme_gray() 背景
  51. theme_bw() 背景
  52. theme_linedraw() 背景
  53. theme_light() 背景
  54. ggplot2 包里如何更改背景
  55. theme_classic() 背景
  56. theme_dark() 背景
  57. theme_void() 背景
  58. 去掉背景仅显示坐标轴

1 基本散点图;200 个正态分布的随机数

  • 散点图用于研究两组个变量(x,y)在坐标平面上的关系。

 

  1. # p 是point
  2. # rnorm(n, mean = 0, sd = 1) 生成随机正态分布的序列
  3. plot(rnorm(200), rnorm(200), type="p")
R语言绘图速查手册(58图)-图片1

2 point 散点图;200 个正态分布的随机数

 

  1. # type = "n" 没有对角线的意思
  2. plot(-4:4, -4:4, type = "n")
  3. points(rnorm(200), rnorm(200), col = "red")

R语言绘图速查手册(58图)-图片2

3 geom_point 散点图;200 个正态分布的随机数

 

  1. library(ggplot2)
  2. df <- data.frame(x=rnorm(200), y=rnorm(200))
  3. ggplot(df, aes(x, y))+geom_point()
R语言绘图速查手册(58图)-图片3

4 基本折线图;10 个正态分布的随机数

  • 折线图用于显示随某个变量变化的数据。

 

  1. # l 是line的意思
  2. plot(1:10, rnorm(10), type="l")

R语言绘图速查手册(58图)-图片4

5 lines() 折线图;刹车速度与滑行距离的关系

 

  1. plot(cars, main = "Stopping Distance versus Speed")
  2. #
  3. lines(stats::lowess(cars))
R语言绘图速查手册(58图)-图片5

6 geom_line() 连接观测值;美国人口失业情况折线图

 

  1. ggplot(economics, aes(date, unemploy)) + geom_line()
  • pce 个人消费支出
  • pop 人口
  • psavert 个人存款率
  • uempmed 每周失业人口中位数
  • unemploy 失业人口

7 barplot() 基本条形图;统计泊松分布随机数

  • 条形图主要描述一组样本之间某个变量的差异情况。

 

  1. # 生成 100 个服从泊松分布 λ = 5 的随机数,并对随机数做列联表统计,条形图展示了列联表统计的结果。
  2. tN <- table(Ni <- stats::rpois(100, lambda = 5))
  3. barplot(tN, col = rainbow(20))

R语言绘图速查手册(58图)-图片6

8 barplot() 堆栈式条形图;分年龄的人口信息被叠加在一起

 

  1. barplot(VADeaths)
R语言绘图速查手册(58图)-图片7

R语言绘图速查手册(58图)-图片7

9 barplot() 按分类依次排列的条形图

 

  1. barplot(VADeaths, beside = TRUE,
  2. col = c("lightblue", "mistyrose", "lightcyan",
  3. "lavender", "cornsilk"),
  4. legend = rownames(VADeaths), ylim = c(0, 110))
  5. title(main = "Death Rates in Virginia", font.main = 4)
R语言绘图速查手册(58图)-图片8

10 geom_bar() 基本条形图

 

  1. library(ggplot2)
  2. ggplot(mpg, aes(class))+geom_bar()

R语言绘图速查手册(58图)-图片9

11 geom_bar() 堆栈式条形图

  • melt函数对宽数据进行处理,得到长数据;
  • identity 不调整位置

 

  1. library(ggplot2)
  2. library(reshape)
  3. ggplot(data=melt(VADeaths), aes(x=X2, y=value, fill=X1)) + geom_bar(stat="identity")

R语言绘图速查手册(58图)-图片10

12 geom_bar() 依次排列式条形图

  • dodge 躲闪

 

  1. ggplot(data=melt(VADeaths), aes(x=X2, y=value, fill=X1)) + geom_bar(stat="identity", position="dodge")

R语言绘图速查手册(58图)-图片11

13 geom_bar() 比列式条形图

 

  1. ggplot(data=melt(VADeaths), aes(x=X2, y=value, fill=X1)) + geom_bar(stat="identity", position="fill")

R语言绘图速查手册(58图)-图片12

14 polygon() 密度图

  • 面积图表示一个连续变量的变化程度,同时也展示了部分与整体之间的关系。
  • 这次我们用个钻石相关的数据来做展示,这个数据集合包含了 54000 个钻石的 价格以及其他相关指标。

 

  1. d <- density(diamonds[diamonds$cut=="Ideal",]$price)
  2. plot(d,main="",xlab = "Price")
  3. polygon(d, col="red",border = "red")
  4. d <- density(diamonds[diamonds$cut=="Premium",]$price)
  5. polygon(d, col="orange",border = "orange")
  6. d <- density(diamonds[diamonds$cut=="Good",]$price)
  7. polygon(d, col="black",border = "black")
  8. d <- density(diamonds[diamonds$cut=="Very Good",]$price)
  9. polygon(d, col="green",border = "green")
  10. d <- density(diamonds[diamonds$cut=="Fair",]$price)
  11. polygon(d, col="yellow",border ="yellow")

R语言绘图速查手册(58图)-图片13

15 polygon() 面积堆积图

 

  1. stackedPlot <- function(data, time=NULL, col=1:length(data), ...){
  2. if (is.null(time))
  3. time <- 1:length(data[[1]]);
  4. plot(0, 0, xlim = range(time), ylim = c(0,max(rowSums(data))), t="n", ...);
  5. for (i in length(data):1) {
  6. # Die Summe bis zu aktuellen Spalte
  7. prep.data <- rowSums(data[1:i]);
  8. # Das Polygon muss seinen ersten und letzten Punkt auf der Nulllinie haben
  9. prep.y <- c(0, prep.data, 0)
  10. prep.x <- c(time[1], time, time[length(time)])
  11. polygon(prep.x, prep.y, col=col[i], border = NA);
  12. }
  13. }
  14. diamonds.data <- as.data.frame.matrix(t(table(diamonds$cut,diamonds$price)))
  15. stackedPlot(diamonds.data)
  • 这张图好美R语言绘图速查手册(58图)-图片14

16 geom_area() 堆积面积图

 

  1. ggplot(diamonds, aes(x = price, fill = cut))+ geom_area(stat = "bin")

R语言绘图速查手册(58图)-图片15

17 密度估计图

  • 取 200 个正态分布的随机数,画其密度估计图像。

 

  1. set.seed(1234)
  2. rating <- rnorm(200)
  3. plot(density(rating))

R语言绘图速查手册(58图)-图片16

18 两个核密度估计图

  • 在一张画布上画两个密度图,直接叠加就可以。

 

  1. set.seed(1234)
  2. rating <- rnorm(200)
  3. rating2 <- rnorm(200, mean=.8)
  4. plot(density(rating))
  5. lines(density(rating2),col="red")

R语言绘图速查手册(58图)-图片17

19 geom_density() 核密度估计图

 

  1. ggplot(diamonds, aes(depth, colour = cut)) + geom_density()

R语言绘图速查手册(58图)-图片18

20 用 Graphics 函数画频率图

  • 频率图像同密度函数图像的区别是:前者统计出现的频数,后者统计概率密度函数。从图中直观的反应就是纵坐标的单位不一样。
  • mtcats 数据是 1974 年 Motor Trend 杂志 所刊登的一组 32 不同种类的汽车耗油量和其他特征信息

 

  1. myhist <- hist(mtcars$mpg,plot = FALSE)
  2. multiplier <- myhist$counts / myhist$density
  3. mydensity <- density(mtcars$mpg)
  4. mydensity$y <- mydensity$y * multiplier[1]
  5. plot(mydensity)

R语言绘图速查手册(58图)-图片19

21 geom_freqpoly() 频率图

 

  1. ggplot(diamonds, aes(price, colour = cut)) + geom_freqpoly(binwidth = 500)

R语言绘图速查手册(58图)-图片20

22 hist() 直方图

  • 直方图是一种对数据分布情况的图形表示,它的样子同条形图相似,但直方图是 用面积而并非单一的高度来表示数量(同分布相关的图,都是用面积来表示数量)。
  • 我们用世界主要大陆地区的数据来做演示,islands 数据统计了主要大陆和岛屿的面积信息

 

  1. hist(sqrt(islands), breaks = 12, col = "lightblue", border = "pink")

R语言绘图速查手册(58图)-图片21

23 geom_hist() 直方图

 

  1. ggplot(as.data.frame(islands), aes(sqrt(islands))) + geom_histogram()

R语言绘图速查手册(58图)-图片22

24 boxplot() 箱线图

  • 箱线图是利用数据中的五个统计量(从下往上依次是):最小值、第一四分位数、 中位数、第三四分位数与最大值来描述数据的一种方法,它也可以粗略地看出数据是否具有有对称性,分布的分散程度等信息,特别可以用于对几个样本的比较。
  • 第一列是昆虫数量,第二列是喷 雾器种类。

 

  1. boxplot(count ~ spray, data = InsectSprays, col = "lightgray")

R语言绘图速查手册(58图)-图片23

25 geom_boxplot() 箱线图

 

  1. ggplot(InsectSprays, aes(spray, count))+geom_boxplot()

R语言绘图速查手册(58图)-图片24

26 错误的 error bar 箱线图

 

  1. ggplot(InsectSprays, aes(spray, count))+ geom_boxplot()+
  2. stat_boxplot(geom ='errorbar',width=0.5)

R语言绘图速查手册(58图)-图片25

27 带 error bar 的箱线图

  • 正确的绘图方法时先画 error bar,再画箱线图。(注意下面代码的顺序)

 

  1. ggplot(InsectSprays, aes(spray, count))+ stat_boxplot(geom ='errorbar',width=0.5)+ geom_boxplot()

R语言绘图速查手册(58图)-图片26

28 vioplot() 提琴图

  • 提琴图展示了数据的密度估计情况,同箱线图类似。但是箱线图只是展示了分位 数的位置,而提琴图展示了任意位置的数据密度。

 

  1. install.packages("vioplot")
  2. library(sm)
  3. library(vioplot)
  4. x1 <- mtcars$mpg[mtcars$cyl==4]
  5. x2 <- mtcars$mpg[mtcars$cyl==6]
  6. x3 <- mtcars$mpg[mtcars$cyl==8]
  7. vioplot(x1, x2, x3, names=c("4 cyl", "6 cyl", "8 cyl"),col="gold")
  8. title("Violin Plots of Miles Per Gallon")

R语言绘图速查手册(58图)-图片27

29 geom_violin() 提琴图

 

  1. ggplot(mtcars, aes(factor(cyl), mpg))+ geom_violin()

R语言绘图速查手册(58图)-图片28

30 添加箱线图信息的提琴图

 

  1. ggplot(mtcars, aes(factor(cyl), mpg))+ geom_violin()+ geom_boxplot(width=.1)

R语言绘图速查手册(58图)-图片29

31 添加均值和标准差信息的提琴图

 

  1. ggplot(mtcars, aes(factor(cyl), mpg))+ geom_violin()+ stat_summary(fun.data = mean_sdl,
  2. geom = "pointrange",
  3. color = "red",
  4. fun.args = list(mult = 1))

R语言绘图速查手册(58图)-图片30

32 dotchart() 绘制 Cleveland 点图

  • Cleveland 点图用于绘制有分类别的数据信息。

 

  1. dotchart(mtcars$mpg,labels=row.names(mtcars),cex=.7, main="Gas Milage for Car Models",
  2. xlab="Miles Per Gallon")

R语言绘图速查手册(58图)-图片31

33 geom_dotplot() 绘制 Cleveland 点图

 

  1. ggplot(mtcars,aes(x = mpg,y = row.names(mtcars), fill =row.names(mtcars))) + geom_dotplot(binaxis = "y",
  2. stackgroups = TRUE,
  3. binwidth = 1,
  4. method = "histodot")

R语言绘图速查手册(58图)-图片32

34 用 heatmap() 绘制热图

 

  1. x <- as.matrix(mtcars)
  2. rc <- rainbow(nrow(x), start = 0, end = .3)
  3. cc <- rainbow(ncol(x), start = 0, end = .3)
  4. hv <- heatmap(x,
  5. col = cm.colors(256),
  6. scale = "column",
  7. RowSideColors = rc, ColSideColors = cc,
  8. margins = c(5,10),
  9. xlab = "specification variables", ylab = "Car Models",
  10. main = "Heatmap of Mtcars data")

R语言绘图速查手册(58图)-图片33

35 geom_tile() 绘制热图

 

  1. library(reshape2)
  2. library(ggplot2)
  3. dat <- matrix(rnorm(100, 3, 1), ncol=10)
  4. names(dat) <- paste("X", 1:10)
  5. dat2 <- melt(dat, id.var = "X1")
  6. ggplot(dat2, aes(as.factor(X1), X2, group=X2)) + geom_tile(aes(fill = value))+geom_text(aes(fill = dat2$value, label = round(dat2$value, 1))) + scale_fill_gradient(low = "white", high = "red")

R语言绘图速查手册(58图)-图片34

36 pheatmap() 绘制热图

 

  1. library(pheatmap)
  2. test = matrix(rnorm(200), 20, 10)
  3. test[1:10, seq(1, 10, 2)] = test[1:10, seq(1, 10, 2)] + 3
  4. test[11:20, seq(2, 10, 2)] = test[11:20, seq(2, 10, 2)] + 2
  5. test[15:20, seq(2, 10, 2)] = test[15:20, seq(2, 10, 2)] + 4
  6. colnames(test) = paste("Test", 1:10, sep = "")
  7. rownames(test) = paste("Gene", 1:20, sep = "")
  8. # 设置每一列的注释
  9. annotation_col = data.frame(
  10. CellType = factor(rep(c("CT1", "CT2"), 5)), Time = 1:5
  11. )
  12. rownames(annotation_col) = paste("Test", 1:10, sep = "") # 设置每一行的注释
  13. annotation_row = data.frame(
  14. GeneClass = factor(rep(c("Path1", "Path2", "Path3"), c(10, 4, 6)))
  15. )
  16. rownames(annotation_row) = paste("Gene", 1:20, sep = "") # 设置注释的颜色
  17. ann_colors = list(
  18. Time = c("white", "firebrick"),
  19. CellType = c(CT1 = "#1B9E77", CT2 = "#D95F02"),
  20. GeneClass = c(Path1 = "#7570B3", Path2 = "#E7298A", Path3 = "#66A61E")
  21. )
  22. pheatmap(test,
  23. annotation_col = annotation_col,
  24. annotation_row = annotation_row,
  25. annotation_colors = ann_colors)

R语言绘图速查手册(58图)-图片35

37 主成分分析图

  • 做 PCA 时我们通常会将前两个主成分展示到坐标平面上,以此来区分样本的差异性。这种图是基本统计图形的综合展示。
  • 我们用 ggbiplot 包里的 wine 数据来做主成分分析,该数据记录了意大利同一 个地区的三种葡萄酒的化学成分和其他特征。

 

  1. library(devtools)
  2. install_github("vqv/ggbiplot")
  3. library(plyr)
  4. library(ggbiplot)
  5. data("wine")
  6. wine.pca <- prcomp(wine, scale. = TRUE)
  7. ggbiplot(wine.pca, obs.scale = 1, var.scale = 1,
  8. groups = wine.class, ellipse = TRUE, circle = TRUE) + scale_color_discrete(name = '')

R语言绘图速查手册(58图)-图片36

38 基本层次聚类图

  • 层次聚类是聚类算法的一种,通过计算样本间的相似度来构造一棵聚类树。
  • 我们采用美国暴力犯罪率来展示层次聚类,USArrests 包含每个州的三种犯罪 人员被逮捕的数量以及该州城市地区人口数量。

 

  1. hc <- hclust(dist(USArrests), "ave")
  2. plot(hc)

R语言绘图速查手册(58图)-图片37

39 dendrograms() 绘制层次聚类图

 

  1. install.packages("ggdendro")
  2. library(ggdendro)
  3. hc <- hclust(dist(USArrests), "ave")
  4. hcdata <- dendro_data(hc)
  5. ggdendrogram(hcdata, rotate=TRUE, size=2) + labs(title="Dendrogram in ggplot2")

R语言绘图速查手册(58图)-图片38

40 plot.phylo() 绘制层次聚类图

 

  1. install.packages("ape")
  2. hc <- hclust(dist(USArrests), "ave")
  3. library(ape)
  4. plot(as.phylo(hc), type = "fan")

R语言绘图速查手册(58图)-图片39

41 graphics 包里如何添加图片标题

  • 在 graphics 包中添加标题用 main 参数,添加子标题用 sub 参数,添加 x 轴标签用 xlab 参数,添加 y 轴标签用 ylab 参数。

 

  1. plot(table(rpois(100, 5)), type = "h", col = "red", lwd = 10, main = "rpois(100, lambda = 5)",sub="this is a sub title", xlab="x axis title",ylab="y axis title"
  2. )

R语言绘图速查手册(58图)-图片40

42 ggplot2 包里如何添加图片标题

  • 这里我们又用了一个新的示例数据 PlantGrowth,该数据展示了在一个试验中 控制不同的条件下植物的生长情况。

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight)) + geom_boxplot() +
  2. ggtitle("Plant growth with\ndifferent treatments")+ xlab("this is xlab")+
  3. ylab("this is ylab")

R语言绘图速查手册(58图)-图片41

43 par() 函数 mfrow 设置多个图片同个画布

 

  1. attach(mtcars)
  2. par(mfrow=c(2,2))
  3. plot(wt,mpg, main="Scatterplot of wt vs. mpg")
  4. plot(wt,disp, main="Scatterplot of wt vs disp")
  5. hist(wt, main="Histogram of wt")
  6. boxplot(wt, main="Boxplot of wt")

R语言绘图速查手册(58图)-图片42

44 layout() 设置多个图片同个画布

 

  1. attach(mtcars)
  2. layout(matrix(c(1,1,2,3), 2, 2, byrow = TRUE),
  3. widths=c(3,1), heights=c(1,2))
  4. hist(wt)
  5. hist(mpg)
  6. hist(disp)

R语言绘图速查手册(58图)-图片43

45 cowlplot::ggdraw() 设置多个图片同 个画布

 

  1. library(cowplot)
  2. sp <- ggplot(mtcars, aes(x = mpg, y = hp, colour = factor(cyl)))+
  3. geom_point(size=2.5)
  4. bp <- ggplot(diamonds, aes(clarity, fill = cut)) +
  5. geom_bar() +
  6. theme(axis.text.x = element_text(angle=90, vjust=0.5))
  7. plot.iris <- ggplot(iris, aes(Sepal.Length, Sepal.Width)) +
  8. geom_point() + facet_grid(. ~ Species) + stat_smooth(method = "lm") + background_grid(major = 'y', minor = "none") +
  9. panel_border()
  10. plot_grid(sp, bp, labels=c("A", "B"), ncol = 2, nrow = 1)
  11. ggdraw() +
  12. draw_plot(plot.iris, 0, .5, 1, .5) +
  13. draw_plot(sp, 0, 0, .5, .5) +
  14. draw_plot(bp, .5, 0, .5, .5) +
  15. draw_plot_label(c("A", "B", "C"), c(0, 0, 0.5), c(1, 0.5, 0.5), size = 15)

R语言绘图速查手册(58图)-图片44

46 gridExtra::grid.arrange() 设置多个图片同个画布

  • 在这里我们使用一个维生素 D 对豚鼠牙齿生长的影响的数据(ToothGrowth), 该数据记录了维生素 D 含量同豚鼠牙齿长度的关系。

 

  1. df <- ToothGrowth
  2. df$dose <- as.factor(df$dose)
  3. ## 计量同牙齿长度的箱线图
  4. bp <- ggplot(df, aes(x=dose, y=len, color=dose)) + geom_boxplot() +
  5. theme(legend.position = "none")
  6. ## 计量同牙齿长度的 Cleveland 点图
  7. dp <- ggplot(df, aes(x=dose, y=len, fill=dose)) +
  8. geom_dotplot(binaxis='y', stackdir='center')+ stat_summary(fun.data=mean_sdl, fun.args = list(mult=1),
  9. geom="pointrange", color="red")+ theme(legend.position = "none")
  10. ## 计量同牙齿长度的提琴图
  11. vp <- ggplot(df, aes(x=dose, y=len)) +
  12. geom_violin()+
  13. geom_boxplot(width=0.1)
  14. ## 计量同牙齿长度的散点图(jitter 抖动模式)
  15. sc <- ggplot(df, aes(x=dose, y=len, color=dose, shape=dose)) +
  16. geom_jitter(position=position_jitter(0.2))+ theme(legend.position = "none") + theme_gray()
  17.  
  18.  
  19. library(gridExtra)
  20. grid.arrange(bp, dp, vp, sc, ncol=2, nrow =2)
  21. ## Warning: Computation failed in `stat_summary()`:
  22. ## Hmisc package required for this function

R语言绘图速查手册(58图)-图片45

47 barplot() 水平显示条形图

 

  1. tN <- table(Ni <- stats::rpois(100, lambda = 5))
  2. barplot(tN, col = rainbow(20), horiz=TRUE)
R语言绘图速查手册(58图)-图片46

48 coord_ ip() 水平显示直方图

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight))+ geom_boxplot() + coord_flip()

R语言绘图速查手册(58图)-图片47

49 theme_grey() 背景

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
  2. theme_grey()

R语言绘图速查手册(58图)-图片48

50 theme_gray() 背景

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
  2. theme_gray()

R语言绘图速查手册(58图)-图片49

51 theme_bw() 背景

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
  2. theme_bw()

R语言绘图速查手册(58图)-图片50

52 theme_linedraw() 背景

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
  2. theme_linedraw()

R语言绘图速查手册(58图)-图片51

53 theme_light() 背景

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
  2. theme_light()

R语言绘图速查手册(58图)-图片52

54 ggplot2 包里如何更改背景

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
  2. theme_minimal()

R语言绘图速查手册(58图)-图片53

55 theme_classic() 背景

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
  2. theme_classic()

R语言绘图速查手册(58图)-图片54

56 theme_dark() 背景

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
  2. theme_dark()

R语言绘图速查手册(58图)-图片55

57 theme_void() 背景

 

  1. ggplot(PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
  2. theme_void()

R语言绘图速查手册(58图)-图片56

58 去掉背景仅显示坐标轴

 

  1. library(ggplot2)
  2. a <- seq(1,20)
  3. b <- a^0.25
  4. df <- as.data.frame(cbind(a,b))
  5. ggplot(df, aes(a, b)) +
  6. geom_point() +
  7. theme(axis.line.x = element_line(color = "black"),
  8. axis.line.y = element_line(color = "black"), panel.grid.major = element_blank(), panel.grid.minor = element_blank(), panel.border = element_blank(), panel.background = element_blank())

R语言绘图速查手册(58图)-图片57

发表评论

匿名网友

拖动滑块以完成验证
加载失败