wtest(season)
wtest()所属R语言包:season
Walter and Elwood's test of seasonality
沃尔特·埃尔伍德的测试的季节性
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Tests for a seasonal pattern in Binomial data.
测试二项数据的季节性模式。
用法----------Usage----------
wtest(cases,offset,data,alpha=0.05)
参数----------Arguments----------
参数:cases
variable name for cases (“successes”).
变量名的情况下(“成功”)。
参数:offset
variable name for at-risk population (“trials”).
变量名的高危人群(“试验”)。
参数:data
data frame (optional).
数据框(可选)。
参数:alpha
significance level (default=0.05).
显着性水平(默认= 0.05)。
Details
详细信息----------Details----------
A test of whether monthly data has a sinusoidal seasonal pattern. The test has low power compared with the cosinor test.
的测试,无论是月度数据一个正弦的季节性模式。测试相比,具有低功耗与cosinor测试。
值----------Value----------
参数:test
test statistic.
检验统计量。
参数:pvalue
p-value.
p-值。
(作者)----------Author(s)----------
Adrian Barnett <a href="mailto:a.barnett<at>qut.edu.au">a.barnett<at>qut.edu.au</a>
参考文献----------References----------
British Journal of Preventive and Social Medicine 29, 18–21.
Data. Springer.
实例----------Examples----------
data(stillbirth)
# tabulate the total number of births and the number of stillbirths[制表的总出生人数和死胎数量]
freqs<-table(stillbirth$month,stillbirth$stillborn)
data<-list()
data$trials<-as.numeric(freqs[,1]+freqs[,2])
data$success<-as.numeric(freqs[,2])
# test for a seasonal pattern in stillbirth[测试的季节性模式死胎]
test<-wtest(cases=success,offset=trials,data=data)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|