2
0
포크 0
R Package implementing the CVE (Conditional Variance Estimation) Method for SDR (Sufficient Dimension Reduction).
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Daniel Kapla 9d0f551dc3 final CRAN re-submition (1.0 -> 1.1) changes in DESCRIPTION 2 년 전
CVarE final CRAN re-submition (1.0 -> 1.1) changes in DESCRIPTION 2 년 전
simulations - add: simulations, 4 년 전
.gitattributes renamed package (naming conflict with bioconductor) 2 년 전
.gitignore CRAN submittion 2 년 전
README.md CRAN submittion 2 년 전

README.md

Installation Instructions

The package depends on the mda package (see: mda @ cran.r-project. Therefore the first step is to install the mda package

install.packages("mda")

A release will be available in a few days.

Open R and then the following:

# addapt to download file.
install.packages("path/to/cve_0.2.<end>", repos = NULL)
library(CVarE) # Test installation.

Please consult the man-pages ?install.package and ?library for further information.

Installing Source

Cloning the CVarE repository and using R's build and install routines from a terminal.

git clone https://git.art-ist.cc/daniel/CVE.git  # Clone repository
cd CVarE                                         # Go into the repository
R CMD build CVarE                                # Build package tarbal
R CMD INSTALL CVarE_1.0.tar.gz                   # Install package

Alternative Installing Source from within R

Using the devtools the package can also be directly installed from within R

library(devtools)                                       # Load the dectools
setwd('<path_to_repo>/CVarE')                           # Go into package root
(path <- build(vignettes = FALSE))                      # Create source package
install.packages(path, repos = NULL, type = "source")   # Install source package
library(CVarE)                                          # Test

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.

Repository Structure

The repository is structured in two directories, the CVarE/ directory which is the R package root and simulations/ where all simulation scripts can be found (and README.md which is this).