https://github.com/ahasverus/elbow
:package: Detect Inflection Point of a Concave Curve
https://github.com/ahasverus/elbow
axes clustering groups inflection-point package r
Last synced: 6 months ago
JSON representation
:package: Detect Inflection Point of a Concave Curve
- Host: GitHub
- URL: https://github.com/ahasverus/elbow
- Owner: ahasverus
- License: gpl-3.0
- Created: 2020-04-25T16:42:57.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-27T06:49:58.000Z (almost 6 years ago)
- Last Synced: 2025-03-13T09:32:22.610Z (11 months ago)
- Topics: axes, clustering, groups, inflection-point, package, r
- Language: R
- Homepage: https://ahasverus.github.io/elbow/
- Size: 1.26 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/",
out.width = "100%"
)
```
# elbow
[](https://travis-ci.com/ahasverus/elbow)
[](https://ci.appveyor.com/project/ahasverus/elbow)
[](https://cran.r-project.org/package=elbow)
[](code_of_conduct.md)
[](https://www.gnu.org/licenses/gpl-3.0)
[](https://www.tidyverse.org/lifecycle/#stable)
The goal of the package `elbow` is to implement the Elbow (or knee of a curve)
method to detect the inflection point of a concave curve. More information on
this method can be found on [Wikipedia](https://en.wikipedia.org/wiki/Elbow_method_(clustering)).
## Installation
You can install the `elbow` package from [GitHub](https://github.com/ahasverus/elbow) with:
```{r echo = TRUE, eval = FALSE}
devtools::install_github("ahasverus/elbow", build_vignettes = TRUE)
library(elbow)
```
## Getting started
Visit the [**vignette**](https://nicolascasajus.fr/elbow/articles/introduction.html)
for a complete example. The vignette is also available by using:
```{r echo = TRUE, eval = FALSE}
browseVignettes("elbow")
```
## Code of Conduct
Please note that the `elbow` 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.