An open API service indexing awesome lists of open source software.

https://github.com/stufield/featureselectr

An object oriented package containing functionality designed for feature selection, model building, and/or classifier development.
https://github.com/stufield/featureselectr

Last synced: about 1 year ago
JSON representation

An object oriented package containing functionality designed for feature selection, model building, and/or classifier development.

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r setup, echo = FALSE, message = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
ver <- desc::desc_get_version(".")
ver <- paste0("https://img.shields.io/badge/Version-", ver,
"-success.svg?style=flat&logo=github")
```

# The `featureselectr` package

![GitHub version](`r ver`)
[![CRAN status](http://www.r-pkg.org/badges/version/featureselectr)](https://cran.r-project.org/package=featureselectr)
[![R-CMD-check](https://github.com/stufield/featureselectr/workflows/R-CMD-check/badge.svg)](https://github.com/stufield/featureselectr/actions)
[![](https://cranlogs.r-pkg.org/badges/grand-total/featureselectr)](https://cran.r-project.org/package=featureselectr)
[![Codecov test coverage](https://codecov.io/gh/stufield/featureselectr/branch/main/graph/badge.svg)](https://app.codecov.io/gh/stufield/featureselectr?branch=main)
[![lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://choosealicense.com/licenses/mit/)

## Overview

The feature selection package contains functionality designed for feature
selection, model building, and/or classifier development.

------------------

## Installation

```{r install-github, eval = FALSE}
# current dev version
remotes::install_github("stufield/featureselectr")

# or a specific version
remotes::install_github("stufield/featureselectr@v0.0.2")
```

------------------

## Usage

To load `featureselectr` simply make a call to `library()` as usual:

```{r, eval = FALSE}
library(featureselectr)
```

## Help summary of the package

```{r help, eval = FALSE}
library(help = featureselectr)
```

## Examples

See the `vignette("featureselectr")` for usage examples.