agwrite(Rgraphviz)
agwrite()所属R语言包:Rgraphviz
A function to write a Ragraph object to a file
函数写Ragraph对象,以文件
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function will take a Ragraph object and write it out in DOT format to a file.
此功能将采取Ragraph对象,并写在dot格式的文件。
用法----------Usage----------
agwrite(graph, filename)
参数----------Arguments----------
参数:graph
An object of class Ragraph
一个对象的类Ragraph
参数:filename
The output filename
输出文件名
Details
详情----------Details----------
This function is a wrapper to the agwrite() call in Graphviz.
此功能是在Graphviz的agwrite()调用的包装。
作者(S)----------Author(s)----------
Jeff Gentry
参见----------See Also----------
agopen, agread
agopen,agread
举例----------Examples----------
V <- letters[1:10]
M <- 1:4
g1 <- randomGraph(V, M, .2)
z <- agopen(g1,"foo",layout=FALSE)
agwrite(z,tempfile())
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|