我试图理解ceb中使用的隶属函数的返回类型< -cluster-edge_betweeness
说
var canvasModel = document.createElement( 'canvas' ), // your current canvas
canvas = document.getElementById( 'view-canvas' ), // displaying on the screen
ctxModel = canvasModel.getContext( '2d' ),
ctx = canvas.getContext( '2d' );
ctx.imageSmoothingEnabled = false;
// all of your stuff that you're currently doing goes here
...
// every time you update the 200x200 canvas, you do this:
ctx.drawImage( canvasModel, 0, 0, w, h );
我希望能够为节点a说明哪些群集是
的成员ceb<-cluster-edge_betweeness(g)
data<-membership(ceb)
print data
a b c d e f g h i j k l m n o p q r s t
1 2 3 4 5 4 6 6 7 8 9 10 11 3 6 12 5 3 13 6
给出
print data[2]
说
b
2
给出
print data[[2]]
我希望能够写出能够返回&#39; b&#39;部分奇怪的数据类型。
[1] 2
给出
class(data)
给出
membership
typeof(data)
给出
double
data[2:10]
我希望说的是一些代码
顶点f是群集4的成员
数据[[6]]将给我4,如何访问f部分?
`
答案 0 :(得分:0)
刚刚发现可以说
data [['a']]
和预期的答案,所以这个数据类型是由节点名称寻址的某种类型的数组。我想我的问题需要是如何获得这样一个构造
的键列表