반응형
## 작성일: 2017.09.27
## 작성자: 춤추는 초코칩
## 4장 범주형 데이터 분석
## 4.2 막대그래프, 원그래프와 모자이크 그래프
freq_ty <- xtabs(~Type, data=Cars93)
freq_ty
# 막대그래프 그리기
barplot(freq_ty, ylim=c(0,25))
# 상대도수 막대그래프 그리기
barplot(prop.table(freq_ty), ylim=c(0,0.3))
# 원그래프 그리기
pie(freq_ty)
# 모자이크그래프 그리기
cross_ty_dt <- xtabs(~Type+DriveTrain, data=Cars93)
# X-축: DriveTrain, Y-축: Type, 절대도수, stack
barplot(cross_ty_dt)
# X-축: DriveTrain, Y-축: Type, 상대도수, stack
barplot(prop.table(cross_ty_dt, margin=2))
# X-축: DriveTrain, Y-축: Type, 절대도수, dodge
barplot(cross_ty_dt, beside=TRUE, ylim=c(0,20))
# 모자이크그래프 그리기
mosaicplot(~Type+DriveTrain, data=Cars93)
반응형
'기초통계' 카테고리의 다른 글
[기초] 10. [R] 독립성검정 (0) | 2017.09.29 |
---|---|
[기초] 9. [R] 적합도검정 (0) | 2017.09.28 |
[기초] 7. [R]도수분포표, 분할표 (0) | 2017.09.25 |
[기초] 6. [엑셀]분산분석 (0) | 2017.09.24 |
[기초] 5. [엑셀]카이제곱 검정 (0) | 2017.09.24 |