Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tidymodels/applicable
Quantify extrapolation of new samples given a training set
https://github.com/tidymodels/applicable
Last synced: about 1 month ago
JSON representation
Quantify extrapolation of new samples given a training set
- Host: GitHub
- URL: https://github.com/tidymodels/applicable
- Owner: tidymodels
- License: other
- Created: 2019-07-08T18:53:53.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T13:32:11.000Z (8 months ago)
- Last Synced: 2024-10-28T17:23:57.848Z (about 2 months ago)
- Language: R
- Homepage: https://applicable.tidymodels.org/
- Size: 4.45 MB
- Stars: 46
- Watchers: 10
- Forks: 7
- Open Issues: 10
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
output: github_document
editor_options:
chunk_output_type: console
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)options(rlang__backtrace_on_error = "reminder")
```
# applicable
[![R-CMD-check](https://github.com/tidymodels/applicable/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/tidymodels/applicable/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/tidymodels/applicable/branch/main/graph/badge.svg)](https://app.codecov.io/gh/tidymodels/applicable?branch=main)
[![Lifecycle:experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html)
[![CRAN status](https://www.r-pkg.org/badges/version/applicable)](https://cran.r-project.org/package=applicable)## Introduction
There are times when a model's prediction should be taken with some skepticism. For example, if a new data point is substantially different from the training set, its predicted value may be suspect. In chemistry, it is not uncommon to create an "applicability domain" model that measures the amount of potential extrapolation new samples have from the training set. applicable contains different methods to measure how much a new data point is an extrapolation from the original data (if at all).
## Installation
You can install the released version of applicable from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("applicable")
```Install the development version of applicable from [GitHub](https://github.com/) with:
``` r
# install.packages("pak")
pak::pak("tidymodels/applicable")
```## Vignettes
To learn about how to use applicable, check out the vignettes:
- `vignette("binary-data", "applicable")`: Learn different methods to analyze binary data.
- `vignette("continuous-data", "applicable")`: Learn different methods to analyze continuous data.
## Contributing
This project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
- For questions and discussions about tidymodels packages, modeling, and machine learning, please [post on RStudio Community](https://community.rstudio.com/new-topic?category_id=15&tags=tidymodels,question).
- If you think you have encountered a bug, please [submit an issue](https://github.com/tidymodels/applicable/issues).
- Either way, learn how to create and share a [reprex](https://reprex.tidyverse.org/articles/articles/learn-reprex.html) (a minimal, reproducible example), to clearly communicate about your code.
- Check out further details on [contributing guidelines for tidymodels packages](https://www.tidymodels.org/contribute/) and [how to get help](https://www.tidymodels.org/help/).