Quick and easy way to clean data and build exploratory data analysis plots.
This idea came up as we have been building data projects for quite some time now in the UBC MDS program. We noticed that there are some repetitive activities that occur when we first explore the data. This project will help you take a given raw data set an conduct some data cleansing and plotting with a minimal amount of code.
The main components of this package are:
Data Checking
Data Cleansing
Exploratory Visualization
There are a myriad of packages that provide similar functionality in the R ecosystem. A few of the packages include:
You can install the development version from GitHub with:
# install.packages("devtools")
devtools::install_github("UBC-MDS/instaeda_R")
The package vingette or long form documentation is available in the link below:
https://jufu.github.io/instaeda/
This is a basic example of usage for functions found inside the instaeda package.
library(instaeda)
plot_info(example_dataframe)
plot_corr(example_dataframe)
plot_basic_distributions(example_dataframe)
divide_and_fill(example_dataframe)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.