我使用colsplit将包含短语的字符列拆分为其组成单词,每个单词都有一列。但是,它为以下示例提供了NA而不是有效的单词。
> p <- data.frame(Phrase = c("the last time i", "given the situation i"))
> p
Phrase
1 the last time i
2 given the situation i
> colsplit(p$Phrase, " ", names = c("w1", "w2", "w3", "w4"))
w1 w2 w3 w4
1 the last time NA
2 given the situation NA
>
我不明白为什么&#34; w4&#34;专栏中没有来自原始数据框中的短语。我是否需要使用&#34;以外的其他内容来拆分字符串? &#34 ;?或者,我需要使用colsplit中的任何选项才能正常工作吗?感谢。