summarizeNumerics(rockchalk)
summarizeNumerics()所属R语言包:rockchalk
Extracts numeric variables and presents an alphabetized summary in
提取数字变量,并提出按字母顺序排列的总结
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function finds the numeric variables and ignores the others. (See summarizeFactors for a function that handles non-numeric variables.). It calculates the quantiles for each variable, as well as the mean, standard deviation, and variance, and then packs those results into a matrix. The main benefits from this compared to R's default summary are 1) more summary information is returned for each variable (dispersion), 2) the results are returned in a matrix that is easy to use in further analysis, 3) the columns in the output are alphabetized. To prevent alphabetization, use alphaSort = FALSE.
该函数查找的数值变量,而忽略其他。 (见summarizeFactors一个非数字变量的函数来处理。)计算位数为每个变量,以及平均值,标准偏差,方差,然后这些结果打包成一个矩阵。的主要好处从这个R的默认摘要相比是1)更多的摘要信息被返回的每一个变量(分散),2)的结果被返回的一个矩阵,容易在进一步的分析,3中使用的)的输出中的列按字母顺序排列。为了防止字母顺序中,使用alphaSort = FALSE。
用法----------Usage----------
summarizeNumerics(dat, alphaSort = TRUE, sumstat = TRUE,
digits = max(3, getOption("digits") - 3))
参数----------Arguments----------
参数:dat
a data frame or a matrix
一个数据框或矩阵
参数:alphaSort
If TRUE (default), the columns are re-organized in alphabetical order. If FALSE, they are presented in the original order.
如果是TRUE(默认),列重的字母顺序排列。如果为FALSE,他们在原来的顺序。
参数:sumstat
If TRUE (default), include mean, standard deviation, and count of NAs.
如果为TRUE(默认值),包括平均值,标准偏差和计数来港定居。
参数:digits
integer, used for number formatting output.
整数,用于数字格式输出。
值----------Value----------
a matrix with one column per variable and the rows representing the quantiles as well as the mean, standard deviation, and variance.
一个矩阵,其中每个变量的一列和行代表以及位数的平均值,标准偏差,和方差。
(作者)----------Author(s)----------
Paul E. Johnson <pauljohn@ku.edu>
参见----------See Also----------
summarize and summarizeFactors
总结和summarizeFactors
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|