您好我是R的新手,我正在尝试取出==0
值的行。
我真的很新,可能犯了一个简单的错误,但我似乎无法弄清楚
这就是我试过的
Simplecount <- na.omit[,Simple$Counts >=1,]
object of type 'closure' is not subsettable
下面的数据表称为Simple
row.names Time INT Counts
19 234 13703 4 0
20 235 13803 4 0
21 236 13903 4 0
22 237 14104 5 1
23 238 14204 5 0
61 276 18403 6 0
62 277 18503 7 1
63 278 18604 7 0
64 279 18704 7 0
答案 0 :(得分:0)
您的代码中包含错误的逗号。
尝试:
> simple[simple$Counts >= 1, ]
row.names Time INT Counts
22 237 14104 5 1
62 277 18503 7 1
或者,在这种特殊情况下,即使以下情况也可行:
simple[as.logical(simple$Counts), ]