R Language
Karaktärsklassen
Sök…
Introduktion
Tecken är vad andra språk kallar "strängvektorer."
Anmärkningar
Tvång
För att kontrollera om ett värde är ett tecken använder is.character()
funktionen is.character()
. För att tvinga en variabel till ett tecken använder as.character()
funktionen as.character()
.
x <- "The quick brown fox jumps over the lazy dog"
class(x)
[1] "character"
is.character(x)
[1] TRUE
Observera att numerik kan tvingas till tecken, men att försöka tvinga ett tecken till numeriskt kan resultera i 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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow