简体   繁体   中英

Getting access to chart_Series () from the quantmod package

The R quantmod package documentation describes both the chartSeries() and chart_Series() functions. But after requiring quantmod, only the chartSeries() function is available. Is there a special way to get access to an R package function besides install.packages() or update.packages()?

What version of quantmod are you using? chart_Series is exported in quantmod_0.3-14 (on CRAN). If you're using an earlier version of quantmod, the chart_Series function may not be exported. In that case, you can access it via quantmod:::chart_Series .


Update:
I'm not intimately familiar with the differences between 32- and 64-bit R on OSX, but you could try to re-install quantmod using 64-bit R if you initially installed it with 32-bit R.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM