Subversion Repositories bdplot

Rev

Rev 42 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
47 pdel 1
***** Building/installing 
2
You can either install from a running R session or from Bash. Notice that there is no need to build the package before installing it.
3
 
4
(from a running R session)
5
install.packages("/path/to/bdgraphics",repos=NULL)
6
 
7
(from bash)
3 pdel 8
R CMD check bdgraphics
7 pdel 9
## either
3 pdel 10
R CMD build bdgraphics
47 pdel 11
R CMD INSTALL bdgraphics_"version".tar.gz 
7 pdel 12
## or
47 pdel 13
R CMD INSTALL bdgraphics
7 pdel 14
 
15
**** To detach the old library and load the newly installed one in
16
     stead (from R)
17
 
18
unloadNamespace("bdgraphics")
19
library(bdgraphics)
47 pdel 20
 
21
***** Note for developers
22
If you have made a change to the package and want to re-install and load the new package, do (from R)
23
install.packages("/path/to/bdgraphics",repos=NULL)
24
unloadNamespace("bdgraphics")
25
library(bdgraphics)