如何解决找不到函数“ get.hist.quote”的问题?

时间:2020-02-03 10:22:18

标签: r

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”

1 个答案:

答案 0 :(得分:0)

通常,在调用函数时遇到问题时,可以使用2个不同的包的不同名称来使用2个不同的函数。因此,例如对于 get.hist.quote(),您可以通过以下方式调用它:

package1::get.hist.quote()
package2::get.hist.quote()