Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/navdeep-g/edastudio

A Shiny Application for Exploring Data
https://github.com/navdeep-g/edastudio

data-mining data-science data-visualization ggplot2 r shiny

Last synced: 13 days ago
JSON representation

A Shiny Application for Exploring Data

Awesome Lists containing this project

README

        

# A Shiny Application for Exploring Data

- `EDAStudio` allows a user to quickly explore data on the fly by utilizing the power of Shiny and ggplot2
- You can do the following:
- scatter plots
- dotplots
- boxplots
- histograms
- densities

# CSV Data Input

- Essentially utilizes `read.csv` -> `read.csv("yourdata.csv",na.strings = c("NA","."))`

# Data Manipulations

- Change continuous variable to be treated as categorical
- Change continuous variable to categories with a specified number of bins or by supplying values for the bins start/end
- Up to six sequential filters for categorical and continuous variables
- Renaming and reordering of the levels of a categorical variable
- Combining two categorical variables into one
- Rounding a numerical variable to a specified number of digits

# `ggplot2` functionality

- Group, color, size, fill mappings
- Controlling y and x axis labels, legends and other commonly used theme options.