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.
- Host: GitHub
- URL: https://github.com/samedwardes/tidyeda
- Owner: SamEdwardes
- License: other
- Created: 2019-11-11T22:46:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-11T23:38:31.000Z (over 6 years ago)
- Last Synced: 2025-02-12T17:50:05.248Z (over 1 year ago)
- Language: R
- Homepage: http://samedwardes.com/tidyeda/
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
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()
```