X = read.csv(file.choose())
头(x)的
Date Open High Low Close Volume
1 2013/1/2 13257 13289 13162 13194 168353
2 2013/1/3 13195 13198 13055 13055 242457
3 2013/1/4 13050 13100 13005 13079 256215
4 2013/1/7 13085 13128 13025 13126 228488
5 2013/1/8 13136 13148 13064 13088 227064
6 2013/1/9 13091 13104 13044 13072 219862
库(quantmod)
BARCHART(x)的
try.xts中的错误(x,error =“chartSeries需要xtsible对象”): chartSeries需要一个xtsible对象
答案 0 :(得分:1)
你可以在一行中完成。假设您加载的文件名为" spy.csv"在你的"数据"目录,持有SP500 OHLC数据。
spy <-as.xts(read.zoo("~/data/spy.csv",header=TRUE,sep=",",colClasses = c("Date", rep("numeric",4))))
barChart(SPY)
将向你显示所有荣耀中的图表: - )
答案 1 :(得分:0)
如果我们假设文件名是GSPC,那么BY加载解决方案我们就会得到!!
Error in file(file, "rt") : cannot open the connection
另外:警告信息:
In file(file, "rt") :
cannot open file 'GSPC.csv': No such file or directory ====> my file is existed !!!