Search code examples
rpackagequantmod

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()?


Solution

  • 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.