2

有没有办法只显示describe命令的前两行输出Hmisc

出于数据安全的原因,我只能在我的输出和可能的直方图中真正显示、nmissinguniquemean

这意味着我必须隐藏 的输出lowesthighest以及频率和百分位数。

这可能吗?如果不是,我可能不得不自己计算这些值。

4

1 回答 1

4
library(Hmisc)

res <- describe(rnorm(400))

#Look at the structure.
str(res)
#It's a list! You can change the objects in it.

res$counts <- res$counts[1:4]
res$values <- NULL

print(res)
#rnorm(400) 
#      n missing  unique    Mean 
#    400       0     400 0.05392 
于 2013-08-13T10:05:31.623 回答