plot.MLP(MLP)
plot.MLP()所属R语言包:MLP
Plot the Results of an MLP Run...
画出一个MLP运行的结果...
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plot the Results of an MLP Run
画出一个MLP运行的结果
用法----------Usage----------
plot(x, y, type=c("barplot", "GOgraph", "quantileCurves"), ...)
参数----------Arguments----------
参数:x
object of class 'MLP'
对象类的总纲发展蓝图“
参数:y
argument added to comply with generic; not used, defaults to NULL
参数添加到遵守通用;未使用,默认为NULL
参数:type
character of length one; one of 'barplot', 'GOgraph' or 'quantileCurves'
字符长度为一;一个“barplot,GOgraph或quantileCurves”
参数:...
further arguments for the plot functions for each type
进一步为每种类型的图功能参数
值----------Value----------
for type = "barplot", the midpoints of the barplot
类型=“barplot”,barplot的中点
举例----------Examples----------
load(pathExampleMLPResult)
dev.new(width = 10, height = 10)
op <- par(mar = c(30, 10, 6, 2))
plot(exampleMLPResult, type = "barplot")
par(op)
plot(exampleMLPResult, type = "quantileCurves")
if (require(GO.db) && require(Rgraphviz)){
plot(exampleMLPResult, type = "GOgraph")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|