modelExtractParam(tigre)
modelExtractParam()所属R语言包:tigre
Extract the parameters of a model.
提取模型参数。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extract parameters from the model into a vector of parameters for optimisation.
从模型中提取到一个优化的参数向量参数。
用法----------Usage----------
modelExtractParam(model, only.values=TRUE, untransformed.values=FALSE)
参数----------Arguments----------
参数:model
the model structure containing the parameters to be extracted.
模型的结构,包含要提取的参数。
参数:only.values
include parameter names in the returned vector.
包括在返回的向量参数名称。
参数:untransformed.values
return actual values, not transformed values used by the optimisers.
返回的实际值,而不是由优化器使用的转换值。
值----------Value----------
参数:param
vector of parameters extracted from the model.
从模型中提取的参数向量。
参见----------See Also----------
modelExpandParam
modelExpandParam
举例----------Examples----------
# Load a mmgmos preprocessed fragment of the Drosophila developmental[加载的果蝇发育mmgmos预处理片段]
# time series[时间序列]
data(drosophila_gpsim_fragment)
# The probe identifier for TF 'twi'[探针标识的TF“TWI”]
twi <- "143396_at"
# The probe identifier for the target gene[为靶基因探针标识符]
targetProbe <- "152715_at"
# Create the model, but do not optimise[创建模型,但不优化]
model <- GPLearn(drosophila_gpsim_fragment,
TF=twi, targets=targetProbe,
useGpdisim=TRUE, quiet=TRUE,
dontOptimise=TRUE)
# Get the initial parameter values[获得初始参数值]
params <- modelExtractParam(model, only.values=FALSE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|