gpt4 book ai didi

r - 使用 R 在 ggplot 中传递字符串变量 facet_wrap()

转载 作者:行者123 更新时间:2023-12-02 10:40:25 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Making plot functions with ggplot and aes_string

(3 个回答)


2年前关闭。




我定义了一个名为 response 的变量。
此变量将传递给 ggplot 包中的 facet_wrap()

 response<-"job"

当我直接在 facet_wrap() 中指定变量时

例如
   ggplot(data,aes(job,fill=class )) + geom_bar() +facet_wrap(~job)

它给出了所需的情节

但是当我在 facet_wrap() 中指定响应变量时
 ggplot(data,aes(job,fill=reponse))+ geom_bar() +  facet_wrap(~get(paste(response)))

我得到错误
  At least one layer must contain all variables used for facetting

有没有办法让 facet_wrap 可以从响应变量中接受变量名,而不是直接在其中写入变量名

最佳答案

(将@kohske 的评论变成答案,以便它可以被接受并“关闭”):

facet_wrap(as.formula(paste("~", response)))

关于r - 使用 R 在 ggplot 中传递字符串变量 facet_wrap(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11028353/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com