통계 > 요약 > 수치적 요약...
Statistics > Summaries > Numeric summaries...
<수치적 요약...> 메뉴를 선택하면 하위 창이 나온다:
데이터 창과 통계 창이 있다. 통계 창을 보려면 데이터 옆에 있는 통계 창을 선택하면 된다:
다시 데이터 창으로 와서 prestige 라는 변수의 수치적 요약 정보를 보고자 한다. prestige 변수를 선택하고, 오른쪽 아래의 예(OK) 버튼을 선택한다:
입력 창과 출력 창을 살펴보자. 통계 창의 선택사항들에 변경을 주지 않은 상태에서 Prestige 라는 데이터셋의 prestige 변수의 수치적 정보는 다음과 같다:
?numSummary # RcmdrMisc 패키지의 numSummary 도움말 보기
if (require("car")){
data(Prestige)
Prestige[1, "income"] <- NA
print(numSummary(Prestige[,c("income", "education")],
statistics=c("mean", "sd", "quantiles", "cv", "skewness", "kurtosis")))
print(numSummary(Prestige[,c("income", "education")], groups=Prestige$type))
remove(Prestige)
}
'Statistics > Summaries' 카테고리의 다른 글
6. Correlation matrix... (0) | 2022.02.13 |
---|---|
5. Table of Statistics... (0) | 2022.02.13 |
4. Count missing observations (0) | 2022.02.13 |
3. Frequency distributions... (0) | 2022.02.13 |
1. Active Data set (0) | 2022.02.13 |