-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMy_EDA_script.R
More file actions
55 lines (26 loc) · 1.31 KB
/
My_EDA_script.R
File metadata and controls
55 lines (26 loc) · 1.31 KB
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
### The tidyverse way ************************************************************************************
# Install packages
# install.packages("tidyverse")
# Load packages
library(tidyverse)
library(readr) # optional cause its per default loaded
# Import data
# Discoer data
# EDA - With tabular tables
# EDA - Testing relationships among variables
# EDA - data vizualisation
### SmartEDA way ************************************************************************************
# install.packages("devtools")
library(devtools)
# Install from the github repo
devtools::install_github("daya6489/SmartEDA",ref = "develop")
# Or
install.packages("SmartEDA")
# Load the package
library(SmartEDA)
### dlookr way ************************************************************************************
### DataExplorer way ************************************************************************************
### Hmisc way ************************************************************************************
### exploreR way ************************************************************************************
### RtutoR way ************************************************************************************
### summarytools way ************************************************************************************