23

在 Hadley Wickham 的ggplot2书中第 10.3 章中,他提到了制作绘图函数。我想制作许多使用刻面的类似图,但我无法引用列。如果我所有的参考都是美学的,那么我可以使用 aes_string 并且一切正常。Facet_wrap 似乎没有类似物。

library(ggplot2)
data(iris)

这是我想要功能化的情节。

pl.flower1 <- ggplot(data=iris, 
                    aes_string(x='Sepal.Length', y='Sepal.Width', color='Petal.Length')) +
                                 geom_point() +facet_wrap(~Species)

如果我不分面,这可行。

flowerPlot <- function(dat, sl, sw, pl, sp){
  ggplot(data=dat, aes_string(x=sl, y=sw, color=pl)) + geom_point()
}
pl.flower2 <- flowerPlot(iris, sl='Sepal.Length', sw='Sepal.Width', pl='Petal.Length')

“sp”应该是下面两行吗?一个公式,一个字符串?也许整个方法是错误的。

flowerPlotWrap <- function(dat, sl, sw, pl, sp){
      ggplot(data=dat, aes_string(x=sl, y=sw, color=pl)) + geom_point() +facet_wrap(sp)
    }
    pl.flower3 <- flowerPlotWrap(iris, sl='Sepal.Length', sw='Sepal.Width', pl='Petal.Length', sp= ?????)

除了答案之外,我还想知道有人如何解决这个问题?

4

3 回答 3

22

facet_wrap期望一个公式作为它的第一个参数,所以我只是用 强制它as.formula,并将 mysp作为字符串输入:

flowerPlotWrap <- function(dat, sl, sw, pl, sp){
      ggplot(data=dat, aes_string(x=sl, y=sw, color=pl)) + 
      geom_point() +facet_wrap(as.formula(sp)) # note the as.formula
}
pl.flower3 <- flowerPlotWrap(iris, sl='Sepal.Length', 
                             sw='Sepal.Width', pl='Petal.Length', 
                             sp= '~Species')

或者,如果我的公式总是看起来像~[columnname],我可以将其构建到flowerPlotWrap并传入列名:

flowerPlotWrap <- function(dat, sl, sw, pl, sp){
      ggplot(data=dat, aes_string(x=sl, y=sw, color=pl)) + 
      geom_point() +facet_wrap(as.formula(sprintf('~%s',sp)))
}
pl.flower3 <- flowerPlotWrap(iris, sl='Sepal.Length', 
                             sw='Sepal.Width', pl='Petal.Length', 
                             sp= 'Species')

(对您问题中可重复的示例表示敬意!如果每个人都提出问题并且他们会更快地得到答案)。

于 2012-04-04T04:29:01.767 回答
4

以下是一些使用新功能的替代方案ggplot2 V3.0.0

使用字符串:

flowerPlot <- function(dat, sl, sw, pl, sp){
  ggplot(data=dat, aes(x=!!ensym(sl), y=!!ensym(sw), color=!!ensym(pl))) + 
    geom_point() +
    facet_wrap(eval(expr(~!!ensym(sp))))
}

flowerPlot(iris, sl='Sepal.Length', sw='Sepal.Width', pl='Petal.Length', sp = 'Species')

使用名称:

flowerPlot2 <- function(dat, sl, sw, pl, sp){
  ggplot(data=dat, aes(x=!!enquo(sl), y=!!enquo(sw), color=!!enquo(pl))) + 
    geom_point() +
    facet_wrap(eval(expr(~!!enquo(sp))))
}

flowerPlot2(iris, sl= Sepal.Length, sw=Sepal.Width, pl=Petal.Length, sp = Species)
于 2018-11-06T09:42:18.870 回答
1

如果我只是使用sp='Species',你的函数对我来说工作得很好,即你想要分面的变量的名称。

flowerPlotWrap(iris, sl='Sepal.Length', sw='Sepal.Width', pl='Petal.Length', sp='Species')

在此处输入图像描述

于 2012-04-04T04:28:42.827 回答