大数据集的 R 中 plotly() 出错

问题描述 投票:0回答:0

我正在尝试绘制一个大数据文件。它的大小为 1.5 GB。我在一台内存很大(192 GB RAM)的计算机上运行 R。它只是 x vs y 如下代码

df <- data.frame(time = seq(10^8), x = rnorm(10^8))
fig <- plot_ly(data = df, x = ~time, y = ~x, type = "scatter", mode = "lines")
fig

大约 5 分钟后,我得到这个错误:

Error in collapse_object(objnames, tmp, indent) : 
  R character strings are limited to 2^31-1 bytes

这是 R 的限制还是情节的限制?有足够的内存,所以我认为这不是问题所在。还有另一种方法可以使用大型数据框制作交互式绘图吗?

r plotly
© www.soinside.com 2019 - 2024. All rights reserved.