7

私はこのデータを持っています。Rで隣接行列を計算したい.

これどうやってするの?V1、V2、V3 は列です。V1 と V2 は NODES、W3 は V1 から V2 への重みです。このデータの方向性は重要です。隣接行列を計算した後、これらの頂点間の最短経路を R 言語で計算したいと考えています。

これどうやってするの?

      V1      V2     V3
[1] 164885   431072   3
[2] 164885   164885   24
[3] 431072   431072   5
4

2 に答える 2

10

を必要としない、より簡単なソリューションを次に示しますreshape()。持っているデータ フレームから直接 igraph グラフを作成するだけです。隣接行列が本当に必要な場合でも、次の方法で取得できますget.adjacency()

library(igraph)

## load data
df <- read.table(header=T, stringsAsFactors=F, text=
                 "     V1      V2    V3
                   164885   431072    3
                   164885   164885   24
                   431072   431072    5")

## create graph
colnames(df) <- c("from", "to", "weight")
g <- graph.data.frame(df)
g
# IGRAPH DNW- 2 3 -- 
# + attr: name (v/c), weight (e/n)

## get shortest path lengths
shortest.paths(g, mode="out")
#        164885 431072
# 164885      0      3
# 431072    Inf      0

## get the actual shortest path
get.shortest.paths(g, from="164885", to="431072")
# [[1]]
# [1] 1 2
于 2013-02-14T21:03:50.000 に答える
9

これで少なくとも始められるはずです。私が考えることができる最も簡単な方法adjacency matrixは、これを取得してから、次のようにreshape使用してグラフを作成することです。igraph

# load data
df <- read.table(header=T, stringsAsFactors=F, text="     V1      V2     V3
 164885   431072   3
 164885   164885   24
 431072   431072   5")
> df
#       V1     V2 V3
# 1 164885 431072  3
# 2 164885 164885 24
# 3 431072 431072  5

# using reshape2's dcast to reshape the matrix and set row.names accordingly
require(reshape2)
m <- as.matrix(dcast(df, V1 ~ V2, value.var = "V3", fill=0))[,2:3]
row.names(m) <- colnames(m)

> m
#        164885 431072
# 164885     24      3
# 431072      0      5

# load igraph and construct graph
require(igraph)
g <- graph.adjacency(m, mode="directed", weighted=TRUE, diag=TRUE)
> E(g)$weight # simple check
# [1] 24  3  5

# get adjacency
get.adjacency(g)

# 2 x 2 sparse Matrix of class "dgCMatrix"
#        164885 431072
# 164885      1      1
# 431072      .      1

# get shortest paths from a vertex to all other vertices
shortest.paths(g, mode="out") # check out mode = "all" and "in"
#        164885 431072
# 164885      0      3
# 431072    Inf      0
于 2013-02-13T10:08:29.110 に答える