pbj0812의 코딩 일기

[R] explore 라이브러리를 통한 EDA 본문

ComputerLanguage_Program/R

[R] explore 라이브러리를 통한 EDA

pbj0812 2020. 9. 2. 00:03

0. 목표

 - explore 라이브러리를 통한 EDA

1. 실습

 1) 설치

install.packages("explore")

 2) library 호출

library(explore)

 3) csv 읽기

  - 캐글의 타이타닉 데이터

df <- read.csv("/Users/pbj0812/Desktop/titanic/train.csv")

 4) 실행

explore(df)

2. 결과

 - GUI 생성

 - report all 클릭시 전체 항목에 대한 결과 생성

3. 참고

 - Modern Exploratory Data Analysis 

Comments