estmodel(coRNAi)
estmodel()所属R语言包:coRNAi
Function to do estimate the main effects from data using median, mean or shorth.
功能做估计使用中位数,平均或shorth的数据的主要影响。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function estimates the main effect i from all data with the RNIi against i. It can be done by median, mean or shorth.
该函数估计的主要作用,我从对我RNIi的所有数据。中位数,平均或shorth的是可以做到的。
用法----------Usage----------
estmodel(df, estimate = c("median", "mean", "shorth"), per = NULL)
参数----------Arguments----------
参数:df
df data frame from cellHTS2df function with extra column weight (see weightDf)
df体重额外的列的数据框从cellHTS2df功能(见weightDf)
参数:estimate
estimate median, mean or shorth, decides how the main effects will be estimated.
estimate位数,平均或shorth的,决定如何将估计的主要影响。
参数:per
per for which factor should the analyis be done separetly, eg. batch or replicate.
per思想探析separetly做哪些因素,例如。批次或复制。
值----------Value----------
for per =NULL, a list with
每= NULL,一个列表
参数:coefficient
the estimated main effects
估计主要影响
参数:residuals
the residual after the main effects have been subtracted from the observations
从观测的主要影响后的残余已减去
for other per, a list of lists like the once described above, one for each level of the factor per.
其他每一个像一次以上,每个因素的每个级别的名单列表。
作者(S)----------Author(s)----------
Elin Axelsson
举例----------Examples----------
data(screen1_raw)
df = cellHTS2df(screen1_raw,neutral="Fluc")
df$weight = as.numeric(df$Type=="comb")
main = estmodel(df,estimate="median")
str(main)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|