2
0
Fork 0
CVE/README.md

35 lines
1.7 KiB
Markdown
Raw Normal View History

2019-12-17 11:07:33 +00:00
# Installation Instructions
The package depends on the `mda` package (see: [mda @ cran.r-project](https://cran.r-project.org/web/packages/mda/index.html). Therefore the first step is to install the `mda` package
```R
2019-12-17 11:07:33 +00:00
install.packages("mda")
```
2019-12-17 11:07:33 +00:00
A release will be available in a few days.
- Linux: release 1 Version 0.2 [CVE_0.2.tar.gz](https://git.art-ist.cc/attachments/4a838d0a-ee28-4200-8f5c-4798ec561196)
- Windows: release 1 Version 0.2 [CVE_0.2.zip](https://git.art-ist.cc/attachments/8c79e07a-b9c4-4a69-b881-1d8751248c17)
2019-12-17 11:07:33 +00:00
- MacOS: Not available jet (unknown)
2019-12-17 11:07:33 +00:00
Open `R` and then the following:
```R
2019-12-17 11:07:33 +00:00
# addapt to download file.
install.packages("path/to/cve_0.2.<end>", repos = NULL)
library(CVE) # Test installation.
```
2019-12-17 11:07:33 +00:00
Please consult the man-pages `?install.package` and `?library` for further information.
2019-12-17 11:07:33 +00:00
## Installing Source
Cloning the `CVE` repository and using `R`'s build and install routines from a terminal.
```bash
git clone https://git.art-ist.cc/daniel/CVE.git # Clone repository
cd CVE # Go into the repository
R CMD build CVE # Build package tarbal
R CMD INSTALL CVE_0.2.tar.gz # Install package
```
2019-12-17 11:07:33 +00:00
### Windows / macOS
Installing from source (for any package which contains compiled code, in our case `C`) on Windows and MacOS requires additional tools.
See _R Installation and Administration_ from [r-project manuals](https://cran.r-project.org/manuals.html).
2019-12-17 11:07:33 +00:00
# Repository Structure
The repository is structured in two directories, the `CVE/` directory which is the `R` package root and `simulations/` where all simulation scripts can be found (and `README.md` which is this).