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()?
The R quantmod package documentation describes both the chartSeries() and chart_Series() functions. But after
Share
What version of quantmod are you using?
chart_Seriesis exported in quantmod_0.3-14 (on CRAN). If you’re using an earlier version of quantmod, thechart_Seriesfunction may not be exported. In that case, you can access it viaquantmod:::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.