getFittedTable(SQUADD)
getFittedTable()所属R语言包:SQUADD
Build the table of fitted values.
建立表的拟合值。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This method creates a table containing the interpolated/fitted value of the simulation curve at the user-defined time point. Each column represents the condition and each line, the component node. It is used as basis for the Correlation Circle and the Prediction Map.
此方法创建一个表,其中包含插值/装在用户定义的时间点的模拟曲线。每一列代表的条件,每一行,组件节点。它是用来作为关联圈和预测图的基础上。
用法----------Usage----------
getFittedTable(object)
参数----------Arguments----------
参数:object
Object of the Class SquadSimResServiceImpl.
对象类SquadSimResServiceImpl。
Details
详情----------Details----------
This method firstly interpolate the SQUAD Simulation curve with a global (linear) or local (lowess) interpolation. A local interpolation is more sensitive to change in the curve when applying perturbation or pulse.
该方法首先插入一个全球性的(线性)或本地(LOWESS)插值警模拟曲线。一位当地的插补应用摄动或脉冲时,在曲线改变更为敏感。
值----------Value----------
returns a matrix of size length of component x length of conditions.
返回一个组件的条件x长度的大小长度的矩阵。
作者(S)----------Author(s)----------
Martial Sankar
参考文献----------References----------
(2) Chambers, J. M. (1992) Linear models. Chapter 4 of Statistical Models in S eds J. M. Chambers and T. J. Hastie, Wadsworth And Brooks/Cole.
参见----------See Also----------
More specific information in getFittedTable-methods. For more informations about the input object see SquadSimResServiceImpl-class.
更具体的信息在getFittedTable-methods。有关输入对象的更多信息,请参阅SquadSimResServiceImpl-class。
举例----------Examples----------
fpath <- system.file("extdata", package="SQUADD")
fileModel <- file.path(fpath,"data_IAA")
nm <- c("ARF(a)", "ARF(i)", "AR_Genes", "Aux/IAA", "BES1/BZR1",
"BIN2", "BR", "BRI1-BAK1","BRR_Genes","BRX","BR_Biosynthesis","BZR1",
"DO", "IAA", "IAA_Biosynthesis", "NGA1", "PIN", "SCFTir1",
"StimAux", "StimBR")
t <- 50
## call constructor[#调用构造函数]
obj <- simResService(
folder=fileModel,
time=t,
ncolor=5,
legend=nm,
indexDeno=1,
method="lowess")
## Apply method [应用方法]
tab <- getFittedTable(obj)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|