使用R,我想得到与我的条件匹配的行数(在这种情况下< 2M)并将该计数放入变量中。
library(VGAM)
DBlah <- rpareto(100,1000000,1)
blahCount <- str(DBlah[DBlah <= 2000000])
blahCount #returns null
我在学习R的时间是2周,所以我确信这很简单。
答案 0 :(得分:0)
使用sum
:
sum(DBlah <= 2000000)
或table
获得&gt; =和&lt;:
table(DBlah <= 2000000)