jarque.bera.test(tseries)
jarque.bera.test()所属R语言包:tseries
Jarque–Bera Test
Jarque-Bera检定
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Tests the null of normality for x using the Jarque-Bera test statistic.
测试空x使用Jarque-Bera检定统计的正常。
用法----------Usage----------
jarque.bera.test(x)
参数----------Arguments----------
参数:x
a numeric vector or time series.
一个数值向量或时间系列。
Details
详细信息----------Details----------
This test is a joint statistic using skewness and kurtosis coefficients.
这个测试是联合统计的偏度和峰度系数。
Missing values are not allowed.
遗漏值是不允许的。
值----------Value----------
A list with class "htest" containing the following components:
列表类"htest"包含以下组件:
参数:statistic
the value of the test statistic.
检验统计量的值。
参数:parameter
the degrees of freedom.
的自由度。
参数:p.value
the p-value of the test.
的p值的测试。
参数:method
a character string indicating what type of test was performed.
一个字符串,表示什么类型的测试进行。
参数:data.name
a character string giving the name of the data.
给出的数据的名称的字符串。
(作者)----------Author(s)----------
A. Trapletti
参考文献----------References----------
Univariate Tests for Time Series Models, Sage, Thousand Oaks, CA, pages 20–22.
实例----------Examples----------
x <- rnorm(100) # null[空]
jarque.bera.test(x)
x <- runif(100) # alternative[替代]
jarque.bera.test(x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|