根据顶点属性(名称)和边检查子图 colors/weight
Check subgraph based in vertex attributes(name) and edges colors/weight
如果图 m 是另一个图 g 的子图,是否有一些方法可以根据属性顶点(名称)和边的权重或颜色来检查 R/igraph?
函数is_subgraphic_isomomorphic_to(m,g, method=vf2)
不起作用,因为它使用顶点id(我需要使用属性(name/color))
示例:
graph m
graph g
更新: is_subgraphic_isomomorphic_to(m,g, method=vf2)
使用颜色(vertex/edge),我需要同时使用顶点和 weight/colors 边的名称,如示例图所示。
如果图 m 是另一个图 g 的子图,是否有一些方法可以根据属性顶点(名称)和边的权重或颜色来检查 R/igraph?
函数is_subgraphic_isomomorphic_to(m,g, method=vf2)
不起作用,因为它使用顶点id(我需要使用属性(name/color))
示例: graph m
graph g
更新: is_subgraphic_isomomorphic_to(m,g, method=vf2)
使用颜色(vertex/edge),我需要同时使用顶点和 weight/colors 边的名称,如示例图所示。