R Language
문자 클래스
수색…
소개
문자는 다른 언어에서 '문자열 벡터'라고 부르는 문자입니다.
비고
강제
값이 문자인지 확인하려면 is.character()
함수를 사용하십시오. 변수를 문자로 강제 변환하려면 as.character()
함수를 사용하십시오.
x <- "The quick brown fox jumps over the lazy dog"
class(x)
[1] "character"
is.character(x)
[1] TRUE
숫자는 문자로 강제 변환 될 수 있지만 문자를 숫자로 강제 변환하면 NA
가 될 수 있습니다.
as.numeric("2")
[1] 2
as.numeric("fox")
[1] NA
Warning message:
NAs introduced by coercion
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow