예제 데이터 불러오기 :: 감정 분석 - mindscale
Skip to content

예제 데이터 불러오기

데이터 불러오기 (Amazon 휴대폰 리뷰)

mobile <- read.csv('mobile2014.csv', stringsAsFactors = F)

파일 차원(dimension) 및 변수 이름 확인

dim(mobile)
names(mobile)
데이터 탐색

mobile[2,]
mobile[1035,]

table(mobile$Sentiment)