我尝试了一些例子,我觉得'字符'指的是字符串或字符串数组。
> x = 'hello'
> class(x)
[1] "character"
> x = "hello"
> class(x)
[1] "character"
> x = c('hello','world')
> class(x)
[1] "character"
为什么称它为“角色”?这让我感到困惑,因为当我听到“人物”这个词时,我首先想到的是,char ch ='a',基本上是一个字符:)
答案 0 :(得分:3)
字符是指向量的类。字符向量由字符串组成。
例如,"a"
和"apple"
都可以是字符向量中的元素。