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

https://github.com/samedwardes/tidyeda

A framework and tools for exploratory data analysis.
https://github.com/samedwardes/tidyeda

Last synced: over 1 year ago
JSON representation

A framework and tools for exploratory data analysis.

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)

library(dplyr)
```

# tidyeda

The goal of tidyeda is to provide a framework and tools for exploratory data analysis (EDA).

## Installation

And the development version from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("SamEdwardes/tidyeda")
```
## Example

This is a basic example which shows you how to solve a common problem:

```{r load data}
library(tidyeda)
data("iris")
iris <- dplyr::as_tibble(iris)
print(iris)
```

```{r example}
library(tidyeda)
iris %>%
better_summary()
```