-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathREADME.Rmd
49 lines (37 loc) · 1.69 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# VSURF
[![R-CMD-check](https://github.com/robingenuer/VSURF/workflows/R-CMD-check/badge.svg)](https://github.com/robingenuer/VSURF/actions)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/VSURF)](https://cran.r-project.org/package=VSURF)
[![CRAN Downloads month](https://cranlogs.r-pkg.org/badges/VSURF?color=blue)](https://www.r-pkg.org/pkg/VSURF)
[![CRAN Downloads overall](https://cranlogs.r-pkg.org/badges/grand-total/VSURF?color=blue)](https://www.r-pkg.org/pkg/VSURF)
Variable Selection Using Random Forests
R package, implementing a three steps variable selection procedure based on random forests.
Initially developed to handle high dimensional data (for which number of
variables largely exceeds number of observations), the package is very
versatile and can treat most dimensions of data, for regression and
supervised classification problems. First step is dedicated to eliminate
irrelevant variables from the dataset. Second step aims to select all
variables related to the response for interpretation purpose. Third step
refines the selection by eliminating redundancy in the set of variables
selected by the second step, for prediction purpose.
## Install
To install the latest released version available on CRAN, use:
```{r, eval=FALSE}
install.packages("VSURF")
```
To try the current development version from github, use:
```{r, eval=FALSE}
if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes")}
remotes::install_github("robingenuer/VSURF")
```