plotFit(CellNOptR)
plotFit()所属R语言包:CellNOptR
Plot the evolution of an optimisation
画出一个优化的演变
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function takes in the results of an optimisation by gaBinaryT1 and plots the evolution of best fit and average fit against generations.
此功能需要在优化由gaBinaryT1和图最适合和对后代的平均合适的演变的结果。
用法----------Usage----------
plotFit(OptRes)
参数----------Arguments----------
参数:OptRes
an object created by the optimisation engine (gabinaryT1)
通过优化发动机(gabinaryT1)创建的对象
值----------Value----------
This function doesn't return anything, it just produces a plot in your graphics window.
此函数不返回任何东西,它只是产生一个图形窗口中的图。
作者(S)----------Author(s)----------
C. Terfve
参见----------See Also----------
gabinaryT1
gabinaryT1
举例----------Examples----------
data(CNOlistToy,package="CellNOptR")
data(ToyModel,package="CellNOptR")
#process the model[处理模型]
indicesToy<-indexFinder(CNOlistToy,ToyModel,verbose=FALSE)
ToyComp<-compressModel(ToyModel,indicesToy)
indicesToyComp<-indexFinder(CNOlistToy,ToyComp)
ToyCompExp<-expandGates(ToyComp)
#optimise[优化]
ToyFields4Sim<-prep4Sim(ToyCompExp)
initBstring<-rep(1,length(ToyCompExp$reacID))
ToyT1opt<-gaBinaryT1(
CNOlist=CNOlistToy,
Model=ToyCompExp,
SimList=ToyFields4Sim,
indexList=indicesToyComp,
initBstring=initBstring,
maxGens=2,
PopSize=5,
verbose=FALSE)
plotFit(OptRes=ToyT1opt)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|