有没有办法只显示describe
中Hmisc
命令的前两行输出?
出于数据安全原因,我只能在输出中显示n
,missing
,unique
和mean
以及可能的直方图。
这意味着我必须隐藏lowest
,highest
的输出以及频率和百分位数。
这可能吗?如果不是,我可能不得不自己计算价值。
答案 0 :(得分: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