gpt4 book ai didi

r - 在 for 循环中构建绘图图不显示所有系列

转载 作者:行者123 更新时间:2023-12-04 10:52:46 24 4
gpt4 key购买 nike

通过一次添加一列来创建绘图效果很好

exPlot <- plot_ly(data.table(matrix(1:9,ncol = 3)))
theCols <- c("V2","V3")
exPlot <- exPlot %>% add_lines(x = ~V1, y = ~get(theCols[1]), type = "scatter",mode = "lines")
exPlot <- exPlot %>% add_lines(x = ~V1, y = ~get(theCols[2]), type = "scatter",mode = "lines")
exPlot

但是如果我尝试在 for 循环中做同样的事情,它只会显示第二个跟踪,覆盖第一个。
exPlot <- plot_ly(data.table(matrix(1:9,ncol = 3)))
theCols <- c("V2","V3")
for(i in 1:2){
exPlot <- exPlot %>% add_lines(x = ~V1, y = ~get(theCols[i]), type = "scatter",mode = "lines")
}
exPlot

有什么办法可以解决这个问题?我环顾四周,设置“evaluate = TRUE”曾经是答案,但这似乎已被弃用。

最佳答案

原因打败了我,但您要求“以任何方式解决此问题”。

而不是通过整个 data.table立即,您可以在循环中指定所需的 y 值,它应该可以工作。

df <- data.table(matrix(1:9,ncol = 3))
exPlot <- plot_ly(df[[1]])
theCols <- c("V2","V3")
for(i in 1:2){
exPlot <- add_lines(exPlot,
y = df[[theCols[i]]],
type = "scatter",
mode = "lines")
}
exPlot

关于r - 在 for 循环中构建绘图图不显示所有系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43237136/

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