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.
私はRが初めてで、30個のノードとk = 4(近隣接続)の規則的な格子を構築したいと考えています。
graph.lattice 関数を使用して igraph パッケージを試しましたが、探しているものを生成できません。
k = 4 の近傍接続を持つ iGraph の規則的な格子:
require(igraph) g <- graph.lattice( c(5,6) ) g <- connect.neighborhood(g, 4) plot(g)