我从csv文件将数据导入到R工作区。
>tbl <- read.csv("BitcoinData.csv", header = TRUE)
然后显示表
>tbl
time timeDate close high low open
1 1.51e+12 12/24/2017 12615.06 12796.90 12428.77 12741.11
然后我想使用列绘制高和低,因为我的数据向下延伸了200多行。
我试过
plot(high, low)
得到了
Error in plot(high, low) : object 'high' not found
有什么建议吗?
答案 0 :(得分:0)
尝试:
plot(tbl$high, tbl$low)
你需要让它知道这些变量的位置......感谢您的简单!