找回密码
 注册
查看: 460|回复: 0

R语言 graph包 removeEdge()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-25 21:12:10 | 显示全部楼层 |阅读模式
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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-5-25 19:32 , Processed in 0.019676 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表