# class 보다 typeof 가 더 상세, 천단위 숫자처리 주의, L 붙이면 Integer
> class(123)
[1] "numeric"
> class(1,123)
Error in class(1, 123) : 2 arguments passed to 'class' which requires 1
> class(123L)
[1] "integer"
> class(123)
[1] "numeric"
> typeof(123)
[1] "double"
> typeof(123L)
[1] "integer"
반응형
'백엔드 프레임워크 & 언어 > R' 카테고리의 다른 글
table의 처리가 용이하도록 가공 (0) | 2022.03.10 |
---|---|
천단위 쉼표 숫자처리 (0) | 2022.03.10 |
R studio의 자주 일어나는 문제 (0) | 2022.03.10 |
R분석 답안제출시 rownames 제외 주의 (0) | 2022.03.10 |
R을 활용한 연관성 분석 (0) | 2022.02.27 |