Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dataknit/tidymine

Tidy interface for calculating Maximal Information-based Nonparametric Exploration (MINE) statistics
https://github.com/dataknit/tidymine

big-data exploratory-data-analysis mine mine-statistics package r r-package statistics

Last synced: 26 days ago
JSON representation

Tidy interface for calculating Maximal Information-based Nonparametric Exploration (MINE) statistics

Awesome Lists containing this project

README

        

# tidymine

tidymine provides a tidy interface for calculating statistics from the Maximal Information-based Nonparametric Exploration (MINE) family. MINE statistics are a robust alternative to correlation measures, recognising a range of functional and non-functional relationships between variables.

## Getting Started

### Installation

Install the latest development version from GitHub:

```{r}
if (!require("devtools")) {
install.packages("devtools")
}
devtools::install_github("joekroese/tidymine")
```

### Examples

```{r}
library(tidyverse)
library(tidymine)

who %>%
tidymine(net_primary_school_enrolment_ratio_female) %>%
arrange(-mic)
```