Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从直方图中排除所有零值。到目前为止,我创建了一个新对象并将所有零值转换为 NA,但我希望有一些更简单的方法而无需创建新对象。
示例代码:
set.seed(45) a<-sample(0:10,500,replace=T) c<-ifelse(a!=0,a,NA) hist(c)
您可以像这样使用子集:
hist( a[ !a==0 ])
您可以检查它的工作方式如下:
table(is.na(c)) FALSE TRUE 443 57 length(a[!a==0]) [1] 443