removeEdge(graph)
removeEdge()所属R语言包:graph
removeEdge
removeEdge
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A function to remove the specified edges from a graph.
一个功能,从图中删除指定的边缘。
用法----------Usage----------
removeEdge(from, to, graph)
参数----------Arguments----------
参数:from
from edge labels
从边缘标签
参数:to
to edge labels
边标签
参数:graph
a graph object
graph对象
Details
详情----------Details----------
A new graph instance is returned with the edges specified by corresponding elements of the from and to vectors removed. If from and to are not the same length, one of them should have length one. All edges to be removed must exist in graph.
一个新的图形实例,则返回指定由from和to向量删除相应元素的边缘。如果from和to是不是应该有相同的长度,其中之一长度为一。所有被删除的边缘,必须在graph存在。
值----------Value----------
A new instance of a graph with the same class as graph is returned with the specified edges removed.
一个相同的类与graph的图的一个新实例返回删除指定的边缘。
作者(S)----------Author(s)----------
R. Gentleman
参见----------See Also----------
addNode,addEdge,removeNode
addNode,addEdge,removeNode
举例----------Examples----------
V <- LETTERS[1:4]
edL1 <- vector("list", length=4)
names(edL1) <- V
for(i in 1:4)
edL1[[i]] <- list(edges=c(2,1,4,3)[i], weights=sqrt(i))
gR <- new("graphNEL", nodes=V, edgeL=edL1)
gX <- removeEdge("A", "B", gR)
set.seed(123)
g <- randomEGraph(V=letters[1:5],edges=5)
g2 <- removeEdge(from=c("a","b"), to=c("d","c"), g)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|