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.
- Host: GitHub
- URL: https://github.com/stufield/featureselectr
- Owner: stufield
- License: other
- Created: 2024-09-29T18:42:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-02T23:57:39.000Z (about 1 year ago)
- Last Synced: 2025-04-03T00:27:15.236Z (about 1 year ago)
- Language: R
- Homepage:
- Size: 2.05 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
- Support: .github/SUPPORT.md
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

[](https://cran.r-project.org/package=featureselectr)
[](https://github.com/stufield/featureselectr/actions)
[](https://cran.r-project.org/package=featureselectr)
[](https://app.codecov.io/gh/stufield/featureselectr?branch=main)
[](https://lifecycle.r-lib.org/articles/stages.html#stable)
[](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.