如何使用ggplot创建一个循环来绘制几个图形

时间:2017-01-31 16:39:36

标签: r ggplot2

这是我的数据框:

x1 <- c(1,2,3,4)
x2 <- c(3,4,5,6)
x3 <- c(5,6,7,8)
x4 <- c(7,8,9,10)
x5 <- c(8,7,6,5)
df <- c(x1,x2,x3,x4,x5)

我从我的数据框中选择3个变量来绘制3个独立的散点图,每个散点图对应x1并将它们存储在一个字符向量中:

varlist <- c("x2","x4","x5")

所以我想创建一个函数,使用ggplot制作3个独立的散点图,其中x1为x2,x1为x4,x1为x5,其中xxyy为要绘制的不同变量对:

ggplot(data = df) +
  geom_point(mapping = aes(x = xx, y = yy)) +
  geom_smooth(mapping = aes(x = xx, y = yy))

1 个答案:

答案 0 :(得分:2)

你可以这样做:

mapply(function(y) print(ggplot(data = df) +
  geom_point(aes_string(x = "x1", y = y)) +
  geom_smooth(aes_string(x = "x1", y = y))), y=c("x2","x4","x5"))

注意:我使用df <- data.frame(x1,x2,x3,x4,x5)代替df <- c(x1,x2,x3,x4,x5)

x设置为x1mapply将循环遍历y,其中包含我们希望针对x1绘制的不同变量。