reshape 패키지
-
R 데이터 마트 - reshape 실습자격증/ADsP 03 데이터 분석 2020. 2. 9. 23:09
주석: #006DD7 코드입력: #333333 결과값: #9D9D9D reshape 패키지 melt(): 원데이터 형태로 만드는 함수 cast(): 요약 형태로 만드는 함수 reshape 패키지 설치 방법 install.packages("reshape") > library(reshape) > head(airquality) Ozone Solar.R Wind Temp Month Day 1 41 190 7.4 67 5 1 2 36 118 8.0 72 5 2 3 12 149 12.6 74 5 3 4 18 313 11.5 62 5 4 5 NA NA 14.3 56 5 5 6 28 NA 14.9 66 5 6 > melt(airquality, id=c("Month", "Day"), na.rm=T) Month Day v..