Skip to content

Instantly share code, notes, and snippets.

@CerebralMastication
Created July 7, 2011 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CerebralMastication/1069764 to your computer and use it in GitHub Desktop.
Save CerebralMastication/1069764 to your computer and use it in GitHub Desktop.
r package install
> install.packages("sde", lib=libPath)
also installing the dependencies ‘fda’, ‘zoo’
trying URL 'http://cran.r-project.org/src/contrib/fda_2.2.6.tar.gz'
Content type 'application/x-gzip' length 6356938 bytes (6.1 Mb)
opened URL
==================================================
downloaded 6.1 Mb
trying URL 'http://cran.r-project.org/src/contrib/zoo_1.6-5.tar.gz'
Content type 'application/x-gzip' length 892136 bytes (871 Kb)
opened URL
==================================================
downloaded 871 Kb
trying URL 'http://cran.r-project.org/src/contrib/sde_2.0.10.tar.gz'
Content type 'application/x-gzip' length 154671 bytes (151 Kb)
opened URL
==================================================
downloaded 151 Kb
* installing *source* package ‘zoo’ ...
** R
** demo
** inst
** preparing package for lazy loading
** help
*** installing help indices
** building package indices ...
** testing if installed package can be loaded
* DONE (zoo)
* installing *source* package ‘fda’ ...
** R
** data
** moving datasets to lazyload DB
** demo
** inst
** preparing package for lazy loading
** help
*** installing help indices
** building package indices ...
** testing if installed package can be loaded
* DONE (fda)
* installing *source* package ‘sde’ ...
** libs
gcc -I/usr/share/R/include -fpic -std=gnu99 -O3 -pipe -g -c sde.sim.c -o sde.sim.o
gcc -shared -o sde.so sde.sim.o -L/usr/lib64/R/lib -lR
installing to /tmp/R17750/sde/libs
** R
** data
** inst
** preparing package for lazy loading
Loading required package: splines
Loading required package: zoo
** help
*** installing help indices
** building package indices ...
** testing if installed package can be loaded
To check the errata corrige of the book, type vignette("sde.errata")
* DONE (sde)
The downloaded packages are in
‘/tmp/RtmpMRDsUk/downloaded_packages’
> library(sde, lib=libPath)
Loading required package: MASS
Loading required package: stats4
Loading required package: fda
Error: package 'fda' could not be loaded
In addition: Warning message:
In library(pkg, character.only = TRUE, logical.return = TRUE, lib.loc = lib.loc) :
there is no package called 'fda'
>
##### but if I call them one by one in reverse order it will load...
> library(fda, lib=libPath)
Loading required package: splines
Loading required package: zoo
Error: package 'zoo' could not be loaded
In addition: Warning message:
In library(pkg, character.only = TRUE, logical.return = TRUE, lib.loc = lib.loc) :
there is no package called 'zoo'
> library(zoo, lib=libPath)
> library(fda, lib=libPath)
> library(sde, lib=libPath)
To check the errata corrige of the book, type vignette("sde.errata")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment