找回密码
 注册
查看: 751|回复: 0

R语言 snpStats包 snp.lhs.tests()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-26 14:48:07 | 显示全部楼层 |阅读模式
snp.lhs.tests(snpStats)
snp.lhs.tests()所属R语言包:snpStats

                                        Score tests with SNP genotypes as dependent variable
                                         作为因变量分数与SNP基因型测试

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Under the assumption of Hardy-Weinberg equilibrium, a SNP genotype is a binomial variate with two trials for an autosomal SNP or with one or two trials (depending on sex) for a SNP on the X chromosome. With each SNP in an input "SnpMatrix" as dependent variable, this function first fits a "base" logistic regression model and then carries out a score test for the addition of further term(s). The Hardy-Weinberg assumption can be relaxed by use of a "robust" option.
Hardy-Weinberg平衡的前提下,一个SNP基因型是一个常染色体SNP的两个试验或二项式变量与一个或两个试验为X染色体上的SNP(基于性别而定)。在输入每个SNP"SnpMatrix"作为因变量,这个函数首先符合“碱基”Logistic回归模型,然后进行了任期(S)除了得分测试。 Hardy-Weinberg平衡假设使用一个“强有力的”选项可以放宽。


用法----------Usage----------


snp.lhs.tests(snp.data, base.formula, add.formula, subset, snp.subset,
                data = sys.parent(), robust = FALSE, uncertain = FALSE,
                control=glm.test.control(maxit=20, epsilon=1.e-5,R2Max=0.999),
                score=FALSE)



参数----------Arguments----------

参数:snp.data
The SNP data, as an object of class "SnpMatrix" or "XSnpMatrix"  
SNP数据,如对象类"SnpMatrix"或"XSnpMatrix"


参数:base.formula
A formula object describing the base model, with dependent variable omitted  
一个formula对象描述的基本模型的因变量,省略


参数:add.formula
A formula object describing the additional terms to be tested, also with dependent variable omitted
一个formula对象描述被测试的附加条款,也与因变量,省略


参数:subset
An array describing the subset of observations to be considered  
一个数组,描述观测的子集,被视为


参数:snp.subset
An array describing the subset of SNPs to be considered. Default action is to test all SNPs.  
要考虑的一个数组描述的SNPs的子集。默认动作是测试所有的SNPs。


参数:data
The data frame in which base.formula, add.formula and subset are to be evaluated
base.formula,add.formula和subset是被评估的数据框


参数:robust
If TRUE, a test which does not assume Hardy-Weinberg equilibrium will be used  
如果TRUE,不承担Hardy-Weinberg平衡测试将使用


参数:uncertain
If TRUE, uncertain genotypes are used and scored by their posterior expectations. Otherwise they are treated as missing. If set, this option forces robust variance estimates
如果TRUE,不确定的基因型使用后期望取得的。否则,他们被视为失踪。如果设置,这个选项强制robust方差估计


参数:control
An object giving parameters for the IRLS algorithm fitting of the base model and for the acceptable aliasing amongst new terms to be tested. See glm.test.control
对象给予示范碱基IRLS算法拟合和参数之间要测试新条款的接受走样。看到glm.test.control


参数:score
Is extended score information to be returned?
延长得分要返回的信息?


Details

详情----------Details----------

The tests used are asymptotic chi-squared tests based on the vector of first and second derivatives of the log-likelihood with respect to the parameters of the additional model. The "robust" form is a generalized score test in the sense discussed by Boos(1992).  If a data argument is supplied, the snp.data and data objects are aligned by rowname. Otherwise all variables in the model formulae are assumed to be stored in the same order as the columns of the snp.data object.
测试中使用的是基于对数似然第一次和第二次衍生工具方面的额外模型的参数向量上的渐近卡方测试。 “稳健”的形式是在广义的得分测试布斯(1992年)讨论的意义。如果data参数提供,snp.data和data对象由rowname的对齐。否则,所有的模型公式中的变量被假设为在相同的顺序列snp.data对象存储。


值----------Value----------

An object of class snp.tests.glm or GlmTests.score depending on whether score is set to FALSE or TRUE in the call.
一个类的对象snp.tests.glm或GlmTests.score取决于是否score设置为FALSE或TRUE在通话。


注意----------Note----------

A factor (or several factors) may be included as arguments to the function strata(...) in the base.formula. This fits all interactions of the factors so included, but leads to faster computation  than fitting these in the normal way. Additionally, a cluster(...) call may be included in the base model formula. This identifies clusters of potentially correlated observations (e.g. for members of the same family); in this case, an appropriate robust estimate of the variance of the score test is used.
可以作为函数的参数中包含的一个因素(或几个因素)strata(...)base.formula的。这符合包括所有因素相互作用,但比装修这些在正常的方式,以更快的计算。此外,cluster(...)通话可能被包括在基本模型公式。这标识聚类潜在的相关意见(如为同一家庭的成员),在这种情况下,使用一个合适的得分测试方差稳健估计。

A known bug is that the function fails when no data argument is supplied and the base model formula contains no variables (~1). A work-round is to create a data frame to hold the variables in the models and pass this as data=.
一个已知的bug是该函数失败时没有data参数提供示范碱基公式包含任何变量(~1)。一个工作轮是创建一个数据框保存在模型中的变量,并通过data=。


作者(S)----------Author(s)----------


David Clayton <a href="mailto:david.clayton@cimr.cam.ac.uk">david.clayton@cimr.cam.ac.uk</a>



参考文献----------References----------



参见----------See Also----------

GlmTests-class, GlmTestsScore-class, glm.test.control,snp.rhs.tests single.snp.tests, SnpMatrix-class,
GlmTests-class,GlmTestsScore-class,glm.test.control,snp.rhs.testssingle.snp.tests,SnpMatrix-class


举例----------Examples----------


data(testdata)
snp.lhs.tests(Autosomes[,1:10], ~cc, ~region, data=subject.data)
snp.lhs.tests(Autosomes[,1:10], ~strata(region), ~cc,
   data=subject.data)

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-1-23 17:42 , Processed in 0.026260 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表