R에서 평균을 구하는 함수는 다음과 같다.
1. mean
> mean(mylm$effects)
[1] -3.500665
2. 메모리에 올려서 컬럼이름만 쓰는 경우
> attach(mylm)
> mean(effects)
[1] -3.500665
> detach(mylm)
3. with
> with(mylm, mean(effects))
[1] -3.500665
'R' 카테고리의 다른 글
[R] NA (0) | 2016.02.14 |
---|---|
[R] 묵시적 변환, 명시적 변환 예시 (0) | 2016.02.14 |
[R] Error in plot.new() : figure margins too large 해결하기 (0) | 2016.01.14 |
[R] k-means 알고리즘 (0) | 2016.01.12 |
로지스틱 회귀 분석 공부 (0) | 2016.01.11 |