GSPC <- as.xts(get.hist.quote("^GSPC",start="1970-01-02", quote=c("Open", "High", "Low", "Close","Volume","AdjClose")))
get.hist.quote(“ ^ GSPC”,start =“ 1970-01-02”,quote = c(“ Open”,: 找不到函数“ get.hist.quote”
答案 0 :(得分:0)
通常,在调用函数时遇到问题时,可以使用2个不同的包的不同名称来使用2个不同的函数。因此,例如对于 get.hist.quote(),您可以通过以下方式调用它:
package1::get.hist.quote()
package2::get.hist.quote()