summaryStats(s20x)
summaryStats()所属R语言包:s20x
Summary Statistics
统计摘要
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Produces a table of summary statistics for the data. If the argument "group" is missing, calculates a matrix of summary statistics for the data in "data". If "group" is present, the elements of "group" are interpreted as group labels and the summary statistics are
产生一个表中的数据的汇总统计。如果参数“组”,在“数据”的数据的汇总统计计算矩阵。如果“组”,“组”的元素被解释为组标签,并汇总统计数据
用法----------Usage----------
summaryStats(x, ...)
## Default S3 method:[默认方法]
summaryStats(x, group = rep("Data", length(x)), data.order = TRUE, digits = 2, ...)
## S3 method for class 'formula'[类formula的方法]
summaryStats(x, data, data.order = TRUE, digits = 2, ...)
参数----------Arguments----------
参数:x
either a single vector of values, or a formula of the form data~group.
无论是单值的向量,或表单数据的~组的公式。
参数:data
an optional data frame containing the variables in the model.
一个可选的数据框包含在模型中的变量。
参数:group
a vector of group labels.
的组标签的向量。
参数:data.order
if T, the group order is the order which the groups are first encountered in the vector "group". If F, the order is alphabetical.
如果T,群阶的顺序是该组第一次遇到“本集团”的向量。如果F的顺序是按字母顺序排列的。
参数:digits
the number of decimal places to display.
显示的小数位数。
参数:...
Optional arguments.
可选参数。
值----------Value----------
Returns a matrix containing the following components:
返回一个矩阵包含以下组件:
参数:Minimum value
参数:Maximum value
参数:Mean value
the average value.
平均值。
参数:Median
the middle value when the batch is ordered.
批处理时,将是有序的中间值。
参数:Upper quartile
参数:Lower quartile
参数:Variance
the average of the squares of the deviations of the data values from the sample mean.
从该样本的数据值的偏差的平方的平均值的平均值。
参数:Standard deviation
the square root of the variance.
方差的平方根。
参数:Midspread (IQR)
the range spanned by central half of data; the interquartile range
四分位距的范围内所跨数据中心的一半;
参数:Skewness
indicates how skewed the data set is. Positive values indicate right-skew data.
表示的数据集是如何倾斜的。正值表示右偏移的数据。
参数:Symmetry statistic(alpha=0.05)
another symmetry measure, values close to 0.5 correspond to reasonably symmetric data.
另一种对称的措施,接近0.5的值对应的合理对称的数据。
参数:Symmetry statistic(alpha=0.10)
alpha by default.
α的默认。
参数:Number of data values
size of the data set.
的数据集的大小。
实例----------Examples----------
## STATS20x data:[#STATS20x数据:]
data(course.df)
with(course.df, summaryStats(Exam))
summaryStats(Exam~Stage1, course.df)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|