gpt4 book ai didi

r - 如何将变量名粘贴到 R `plot`

转载 作者:行者123 更新时间:2023-12-04 09:47:10 25 4
gpt4 key购买 nike

这看起来应该很明显,但我试过了 substitute , bquoteexpressionpastecat,结果相似(失败)。

require(quantmod)
getSymbols("SAM")
thing = "SAM"
plot(SAM) #this works fine
plot(thing) #this does not

xts(thing) 中封装 thing 等等也不起作用。

最佳答案

这个怎么样:

plot(get(thing))  

运行 thing = "SAM" 只是将字符“SAM”分配给名为 thing 的变量。 R 无法知道(无需您告诉它)您希望它将字符向量 thingvalue 连接到环境中的特定对象(即 山姆)。所以 get 在这里发挥了作用。

关于r - 如何将变量名粘贴到 R `plot`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7326171/

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