I am trying to use function garsim from package gsarima. I can download gsarima package from http://cran.fyxm.net/web/packages/gsarima/index.html for linux. But how I can add it to R. I have compiled and installed R from its R source code under Ubuntu. regards. -- Amar Kumar Nandan Karnataka ,India , 560100 http://aknandan.co.nr [[alternative HTML version deleted]]
On Sunday 23 January 2011 20:52:21 nandan amar wrote:> I am trying to use function garsim from package gsarima. > I can download gsarima package from > http://cran.fyxm.net/web/packages/gsarima/index.html for linux. > But how I can add it to R. >For example by entering R CMD INSTALL /path/to/gsarima_0.0-2.tar.gz
Hi Nandan, On 01/23/2011 08:52 PM, nandan amar wrote:> I am trying to use function garsim from package gsarima. > I can download gsarima package from > http://cran.fyxm.net/web/packages/gsarima/index.html for linux. > But how I can add it to R. > I have compiled and installed R from its R source code under Ubuntu.$ sudo R install.packages("gsarima") # install at R command line library(gsarima) # load the package ?garsim # look a the help page of the function Hope this helps, Tobias
On 01/24/2011 05:05 AM, nandan amar wrote:> Thanks a lot. > I am getting following errors on, > >> R CMD INSTALL gsarima_0.0-2.tar.gz (gsarima_0.0-2.tar.gz is in same directory where I am running R) > Error: unexpected symbol in "R CMD" > > > and > >> install.pacakges('gsarima',dep=TRUE,clean=TRUE) > Error: could not find function "install.pacakges"You spelled it incorrectly. Best, Tobias> On 24 January 2011 03:10, Tobias Verbeke > <tobias.verbeke at openanalytics.eu> wrote: >> Hi Nandan, >> >> On 01/23/2011 08:52 PM, nandan amar wrote: >>> >>> I am trying to use function garsim from package gsarima. >>> I can download gsarima package from >>> http://cran.fyxm.net/web/packages/gsarima/index.html for linux. >>> But how I can add it to R. >>> I have compiled and installed R from its R source code under Ubuntu. >> >> $ sudo R >> install.packages("gsarima") # install at R command line >> >> library(gsarima) # load the package >> ?garsim # look a the help page of the function >> >> Hope this helps, >> Tobias >> > > >