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

R语言 SimHap包 haplo.bin()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-30 02:46:16 | 显示全部楼层 |阅读模式
haplo.bin(SimHap)
haplo.bin()所属R语言包:SimHap

                                        Haplotype analysis for a binary trait
                                         二元性状的单倍型分析

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

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

haplo.bin performes a series of generalized linear models using a simulation-based approach to account for uncertainty in haplotype assignment when phase is unknown.
haplo.binperformes一系列广义线性模型,使用模拟为基础的方法来解释阶段是未知的单倍型分配的不确定性。


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


haplo.bin(formula1, formula2, pheno, haplo, sim, effect = "add",
        sub = NULL, adjust=FALSE)



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

参数:formula1
a symbolic description of the full model including haplotype parameters to be fit. The details of model specification are given below.
一个完整的模型,包括单倍型是适合的参数符号描述。模型规范的细节在下面给出。


参数:formula2
a symbolic description of the nested model excluding haplotype parameters, to be compared to formula1 in a likelihood ratio test.
一个象征性的嵌套模式,不包括单倍型参数的说明,相比formula1似然比检验。


参数:pheno
a phenotype data set.
表型数据集。


参数:haplo
a haplo object made by make.haplo.rare. The subjects must in the same order as they are in the phenotype data.
haplo的对象由make.haplo.rare。科目必须以相同的顺序,因为它们是在表型数据。


参数:sim
the number of simulations from which to evaluate the results.
的数量的模拟来对结果进行评估。


参数:effect
the genetic effect type: "add" for additive, "dom" for dominant and "rec" for recessive. Defaults to additive. See note.
的遗传效应类型:"add"添加剂"dom"主导和"rec"为隐性。默认至添加剂。见注。


参数:sub
an expression representing a subset of the data on which to perform the models.
的数据的一个子集的表达式,表示在其上执行的模型。


参数:adjust
a logical flag. If adjust=TRUE, the adjusted degrees of freedom is used. This is recommended when the computed degrees of freedom is larger than the complete data degrees of freedom. By default, adjust=FALSE.
一个逻辑标志。如果调整= TRUE,调整后的自由度。当所计算的自由度是大于完整的数据的自由度,这是推荐的。默认情况下,调整= FALSE。


Details

详细信息----------Details----------

formula1 should be in the form outcome ~ predictor(s) + haplotype(s) and formula2 should be in the form outcome ~ predictor(s). A formula has an implied intercept term. See documentation for the formula function for more details of allowed formulae.
formula1是中的形式outcome ~ predictor(s) + haplotype(s)和formula2应该是形式outcome ~ predictor(s)。公式有一个隐含的截距项。允许的公式的详细信息,请参阅文档formula功能。


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

haplo.bin returns an object of class hapBin.
haplo.bin返回一个对象类hapBin。

The summary function can be used to obtain and print a summary of the results.  
summary函数可以用来获取和打印结果的摘要。

An object of class hapBin is a list containing the following components:
一个对象的类hapBin的是一个列表,其中包含以下组件:


参数:formula1
formula1 passed to haplo.bin.
formula1传递给haplo.bin。


参数:formula1
formula2 passed to haplo.bin.
formula2传递给haplo.bin。


参数:results
a table containing the coefficients, averaged over the sim models performed; standard errors, computed as the sum of the between-imputation and within-imputation variance; and p-values, based on a t-distribution with appropriately computed degrees of freedom, of the parameter estimates.
一个表,其中包含的系数,平均sim模型;标准误差,计算的总和之间的归集,归集内方差;和p值,在t分布的适当的计算度自由,参数估计。


参数:empiricalResults
a list containing the odds ratios, confidence intervals and p-values calculated at each simulation.
在每个模拟计算的一个列表,其中包含的胜算比,置信区间和p值。


参数:ANOD
analysis of deviance table for the model fit using formula1, averaged over all simulations.
分析偏差表的模型拟合使用formula1,平均超过所有的模拟。


参数:logLik
the average log-likelihood for the generalized linear model fit using formula1.
使用formula1广义线性模型拟合的平均对数似然。


参数:WALD
a Wald test, testing for significant improvement of the model when haplotypic parameters are included.
一个Wald检验,测试单倍型参数被包含时显着改善了该模型。


参数:aic
Akaike Information Criterion for the generalized linear model fit using  formula1, averaged over all simulations.
赤池信息准则的广义线性模型的拟合使用formula1,平均超过所有的模拟。


参数:aicPredicted
Akaike Information Criteria calculated at each simulation.
在每个仿真计算的Akaike信息准则。


参数:effect
the haplotypic effect modelled, "ADDITIVE", "DOMINANT" or "RECESSIVE".
单倍型效果为蓝本,“添加剂”,“显性”或“隐性”。


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

To model a codominant haplotypic effect, define the desired haplotype as a factor in the formula1 argument. e.g. factor(h.AAA), and use the default option for effect.
要对一个显性单倍型的效果,定义所需的单倍型的一个因素formula1参数。例如factor(h.AAA),并使用默认选项为effect。


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


Pamela A. McCaskie



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







S. New York: Springer.
multiple imputation. Biometrika, 86, 948-955.

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

snp.bin, haplo.quant, haplo.quant, haplo.long
snp.bin,haplo.quant,haplo.quant,haplo.long


实例----------Examples----------



data(SNP.dat)

# convert SNP.dat to format required by infer.haplos[SNP.dat转换,格式化所需的infer.haplos]
haplo.dat <- SNP2Haplo(SNP.dat)

data(pheno.dat)

# generate haplotype frequencies and haplotype design matrix[产生单倍型频率和单倍型设计矩阵]
myinfer<-infer.haplos(haplo.dat)

# print haplotype frequencies generated by infer.haplos[打印单倍型频率所产生的infer.haplos]
myinfer$hap.freq

# generate haplo object where haplotypes with a frequency [单倍型的频率产生单倍体对象]
# below min.freq are grouped as a category called "rare"[下面min.freq分为一类被称为“罕见”]
myhaplo<-make.haplo.rare(myinfer,min.freq=0.05)
mymodel <- haplo.bin(formula1=PLAQUE~AGE+SBP+h.N1AA,
        formula2=PLAQUE~AGE+SBP, pheno=pheno.dat, haplo=myhaplo, sim=10)

# example with a subsetting variable, looking at males only[例如,一个子集变量,只在男性]
# and modelling a dominant haplotypic effect[和建模的优势单倍型效果]
mymodel <- haplo.bin(formula1=PLAQUE~AGE+SBP+h.N1AA,
        formula2=PLAQUE~AGE+SBP, pheno=pheno.dat, haplo=myhaplo,
        sim=10, effect="dom", sub=expression(SEX==1))



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


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

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-5-25 04:58 , Processed in 0.023259 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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