bartlett.test(stats)
bartlett.test()所属R语言包:stats
Bartlett Test of Homogeneity of Variances
巴特利特方差同质性试验
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Performs Bartlett's test of the null that the variances in each of the groups (samples) are the same.
进行巴特利特空测试,在每个组(样品)的差异是相同的。
用法----------Usage----------
bartlett.test(x, ...)
## Default S3 method:[默认方法]
bartlett.test(x, g, ...)
## S3 method for class 'formula'[类formula的方法]
bartlett.test(formula, data, subset, na.action, ...)
参数----------Arguments----------
参数:x
a numeric vector of data values, or a list of numeric data vectors representing the respective samples, or fitted linear model objects (inheriting from class "lm").
数据值的数字向量,或代表各自的样品,或拟合线性模型对象的数字数据向量名单(继承类"lm")。
参数:g
a vector or factor object giving the group for the corresponding elements of x. Ignored if x is a list.
x相应的元素给一个向量或因素的对象组。被忽略,如果x是一个列表。
参数:formula
a formula of the form lhs ~ rhs where lhs gives the data values and rhs the corresponding groups.
一个公式的形式lhs ~ rhs其中lhs给人的数据值和rhs相应的组。
参数:data
an optional matrix or data frame (or similar: see model.frame) containing the variables in the formula formula. By default the variables are taken from environment(formula).
一个可选的矩阵或数据框(或类似:看到model.frame)包含公式formula的变量。默认情况下采取的变量从environment(formula)。
参数:subset
an optional vector specifying a subset of observations to be used.
一个可选的向量,指定要使用的意见的一个子集。
参数:na.action
a function which indicates what should happen when the data contain NAs. Defaults to getOption("na.action").
一个函数,它表示数据时,包含NA的,应该发生什么。 getOption("na.action")默认。
参数:...
further arguments to be passed to or from methods.
进一步的参数被传递到或从方法。
Details
详情----------Details----------
If x is a list, its elements are taken as the samples or fitted linear models to be compared for homogeneity of variances. In this case, the elements must either all be numeric data vectors or fitted linear model objects, g is ignored, and one can simply use bartlett.test(x) to perform the test. If the samples are not yet contained in a list, use bartlett.test(list(x, ...)).
如果x是一个列表,其元素作为样品或拟合线性模型方差同质性比较。在这种情况下,元素都必须是数字数据向量或拟合线性模型对象,g被忽略,可以简单地使用bartlett.test(x)进行测试。如果样本尚未在名单中,使用bartlett.test(list(x, ...))。
Otherwise, x must be a numeric data vector, and g must be a vector or factor object of the same length as x giving the group for the corresponding elements of x.
否则,x必须是数字数据向量,和g必须x给x相应的元素组相同长度的向量或因素的对象, 。
值----------Value----------
A list of class "htest" containing the following components:
一类"htest"包含以下组件的列表:
参数:statistic
Bartlett's K-squared test statistic.
巴特利特的K-平方测试统计。
参数:parameter
the degrees of freedom of the approximate chi-squared distribution of the test statistic.
自由的近似卡方检验统计量的分布度。
参数:p.value
the p-value of the test.
p值的测试。
参数:method
the character string "Bartlett test of homogeneity of variances".
字符串"Bartlett test of homogeneity of variances"。
参数:data.name
a character string giving the names of the data.
字符串提供的数据的名称。
参考文献----------References----------
Properties of sufficiency and statistical tests. Proceedings of the Royal Society of London Series A 160, 268–282.
参见----------See Also----------
var.test for the special case of comparing variances in two samples from normal distributions; fligner.test for a rank-based (nonparametric) k-sample test for homogeneity of variances; ansari.test and mood.test for two rank based two-sample tests for difference in scale.
var.test比较两个样本来自正态分布的方差的特殊情况; fligner.test基于秩(非参数)k样本方差同质性的考验; ansari.test mood.test排名基于两个样本测试在规模上的差异。
举例----------Examples----------
require(graphics)
plot(count ~ spray, data = InsectSprays)
bartlett.test(InsectSprays$count, InsectSprays$spray)
bartlett.test(count ~ spray, data = InsectSprays)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|