我在R中有以下说明:
y <- rep(1:2,each=3)
我知道它生成了1和2的向量:
[1] 1 1 1 2 2 2
如果我想从具有以下形式的csv行中提取该信息,我将如何获得相同的结果:
[1] ",,1,1,1,2,2,2"
我尝试过as.numeric和is.na,我仍然得到一个空列表。 有什么帮助吗?
答案 0 :(得分:5)
MatthewPlourde的建议包含在内:
> txt <- ",,1,1,1,2,2,2"
> scan(text=txt,, sep=",")
Read 8 items
[1] NA NA 1 1 1 2 2 2
其他选项是strsplit。
> unlist( strsplit(txt, ",") )
[1] "" "" "1" "1" "1" "2" "2" "2"
采用马修的建议后,没有必要回答“如何转换为数字?”的问题。 ....但如果你有一个角色向量,那么......现在你已经分成了组件,使用as.numeric
:
> as.numeric( scan(textConnection(txt), what="", sep=",") )
Read 8 items
[1] NA NA 1 1 1 2 2 2
另一种选择是使用数字格式进行扫描:
> scan(textConnection(txt), what=numeric(0), sep=",")
Read 8 items
[1] NA NA 1 1 1 2 2 2
并删除NAs:
> numbas <- scan(textConnection(txt), what=numeric(0), sep=",")
Read 8 items
> numbas[!is.na(numbas)]
[1] 1 1 1 2 2 2