compareNetworks(BioNet)
compareNetworks()所属R语言包:BioNet
Compare parameters of two networks
比较两个网络参数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function compares the following parameters of two networks: diameter, average degree, degree exponent, average path length and plots the cumulative degree distributions. The networks have to be connected components.
功能比较两个网络的参数如下:直径,平均度,度指数,平均路径长度和图的累积度分布。网络连接组件。
用法----------Usage----------
compareNetworks(network1, network2, plot=TRUE)
参数----------Arguments----------
参数:network1
Network graphNEL or igraph format.
网络graphNEL或IGRAPH格式。
参数:network2
Second network in graphNEL or igraph format, or subnetwork drawn from first network.
从第一个网络的第二graphNEL或IGRAPH格式,或子网网络。
参数:plot
Boolean value, whether to plot the cumulative degree distributions.
布尔值,是否要绘制累积度分布。
值----------Value----------
A vector of network parameters is returned:
网络参数的向量返回:
参数:diam.network1
Network diameter
网络直径
参数:diam.network2
Diameter of the subnetwork
直径子网
参数:av.degree.network1
Average degree of the network
网络的平均度
参数:av.degree.network2
Average degree of the subnetwork
子网的平均程度
参数:degree.exponent.network1
Degree exponent of the network
网络度指数
参数:degree.exponent.network2
Degree exponent of the subnetwork
子网度指数
参数:av.path.length.network1
Average path lenght of the network
网络的平均路径长度
参数:av.path.length.network2
Average path length of the subnetwork
子网的平均路径长度
作者(S)----------Author(s)----------
Daniela Beisser
举例----------Examples----------
library(DLBCL)
data(interactome)
subnet1 <- largestComp(subNetwork(nodes(interactome)[1:100], interactome))
subnet2 <- largestComp(subNetwork(nodes(interactome)[101:200], interactome))
compareNetworks(network1=subnet1, network2=subnet2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|