Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
add.edges() 中に幅などの属性を割り当てます。
g <- add.edges(g,c(from,to), attr= width <- 1 ) Error message: please supply names for attributes
名前付きリストを割り当てる必要があります。
g <- graph.adjacency(matrix(0,2,2)) g <- add.edges(g,c(1,2),attr=list(width=10))
使用したコードでは1、変数widthに代入してから、 の値width、つまり1引数に代入しますattr。
1
width
attr