-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
60 lines (41 loc) · 1.95 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# reasyeda
<!-- badges: start -->
<!-- badges: end -->
This is a package developed to quickly create interactive visualizations for your data and standardize how they look. Other functionality has also been built in order to check correlation, predictive power score (PPS), and how various transformations might influence your data.
Note: This package was built on R 4.1.2.
## Installation
You can install reasyeda like this:
``` r
# install.packages("devtools")
devtools::install_github("amanda-park/reasyeda")
```
## How to Use
```{r eval = FALSE}
require(reasyeda)
#Load penguins dataset
data(penguins, package = "modeldata")
#Opens Shiny App to Interactively Explore Data
#explore_df(penguins)
```
Upon opening the Shiny app there will be 5 tabs:
* Visualization
* Transformations
* Table
* Predictive Power Score
* Pearson correlations
**Visualization** creates plots of your raw data that executive leaders will find pleasing to the eyes. Most plots are plotly-wrapped ggplots for a more Tableau-like feel, but can be downloaded separately to remove the interactivity component. A variety of color choices are available to make sure the plot fits your organization's preferred color schemes.
**Transformations** will let you see how normally distributed your data looks visually and according to Shapiro-Wilk after applying some common transformations to your numeric variables.
**Table** will let you see your raw data in an interactive datatable for easier exploration at a very granular level.
**Correlations** measures the relationship between numeric variables via Pearson's Correlation and then detecting overall relationships between variables using Predictive Power Score. Plots and Table outputs are provided.