coNetwork(simone)
coNetwork()所属R语言包:simone
Random perturbations of a reference network
参考网络的随机扰动
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Simulates a network from another network object by randomly perturbing a given number of edges.
模拟网络从另一个网络对象由随机扰动给定数目的边缘。
用法----------Usage----------
coNetwork(graph,
delta,
参数----------Arguments----------
参数:graph
an object of class simone.network (typically generated by the rNetwork function).
类的一个对象simone.network(通常由rNetwork功能)。
参数:delta
an integer giving the number of edges to randomly remove AND add to graph in order to obtain a randomly perturbed network.
一个整数,给出的边数随机删除和添加到graph为了获得一个随机扰动的网络。
参数:name
a character string indicating the name of the perturbed network.
一个字符的字符串表示的名称的摄动网络。
值----------Value----------
Returns an object of class simone.network, see rNetwork for further details.
返回一个对象的类simone.network,看到rNetwork的进一步详情。
(作者)----------Author(s)----------
J. Chiquet
参见----------See Also----------
rNetwork, plot.simone.network.
rNetwork,plot.simone.network。
实例----------Examples----------
## ancestor and child network generation[#祖先和儿童网络代]
ancestor <- rNetwork(p = 20, pi = 20, name = "ancestor")
child <- coNetwork(ancestor, delta = 1, name = "child")
# network comparison[网络比较]
plot(ancestor, child)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|