This file is indexed.

/usr/lib/R/site-library/igraph/demo/smallworld.R is in r-cran-igraph 0.7.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
pause <- function() {
  cat("Press ENTER/RETURN/NEWLINE to continue.")
  readLines(n=1)
  invisible()
}

pause()

### Create a star-like graph
t1 <- graph.formula(A-B:C:D:E)
t1

pause()

### Define its plotting properties
t1$layout <- layout.circle
V(t1)$color <- "white"
V(t1)[name=="A"]$color <- "orange"
V(t1)$size <- 40
V(t1)$label.cex <- 3
V(t1)$label <- V(t1)$name
E(t1)$color <- "black"
E(t1)$width <- 3

pause()

### Plot 't1' and A's transitivity
tr <- transitivity(t1, type="local")[1]
plot(t1, main=paste("Transitivity of 'A':", tr))

pause()

### Add an edge and recalculate transitivity
t2 <- add.edges(t1, V(t1)[name %in% c("C","D")], color="red", width=3)
tr <- transitivity(t2, type="local")[1]
plot(t2, main=paste("Transitivity of 'A':", round(tr,4)))

pause()

### Add two more edges
newe <- match(c("B", "C", "B", "E"), V(t2)$name)-1
t3 <- add.edges(t2, newe, color="red", width=3)
tr <- transitivity(t3, type="local")[1]
plot(t3, main=paste("Transitivity of 'A':", round(tr,4)))

pause()

### A one dimensional, circular lattice
ring <- graph.ring(50)
ring$layout <- layout.circle
V(ring)$size <- 3
plot(ring, vertex.label=NA, main="Ring graph")

pause()

### Watts-Strogatz model
ws1 <- watts.strogatz.game(1, 50, 3, p=0)
ws1$layout <- layout.circle
V(ws1)$size <- 3
E(ws1)$curved <- 1
plot(ws1, vertex.label=NA, main="regular graph")

pause()

### Zoom in to this part
axis(1)
axis(2)
abline(h=c(0.8, 1.1))
abline(v=c(-0.2,0.2))

pause()

### Zoom in to this part
plot(ws1, vertex.label=NA, xlim=c(-0.2, 0.2), ylim=c(0.8,1.1))

pause()

### Transitivity of the ring graph
transitivity(ws1)

pause()

### Path lengths, regular graph
average.path.length(ws1)

pause()

### Function to test regular graph with given size
try.ring.pl <- function(n) {
  g <- watts.strogatz.game(1, n, 3, p=0)
  average.path.length(g)
}
try.ring.pl(10)
try.ring.pl(100)

pause()

### Test a number of regular graphs
ring.size <- seq(100, 1000, by=100)
ring.pl <- sapply(ring.size, try.ring.pl)
plot(ring.size, ring.pl, type="b")

pause()

### Path lengths, random graph
rg <- erdos.renyi.game(50, 50*3, type="gnm")
rg$layout <- layout.circle
V(rg)$size <- 3
plot(rg, vertex.label=NA, main="Random graph")
average.path.length(rg)

pause()

### Path length of random graphs
try.random.pl <- function(n) {
  g <- erdos.renyi.game(n, n*3, type="gnm")
  average.path.length(g)
}
try.random.pl(100)

pause()

### Plot network size vs. average path length
random.pl <- sapply(ring.size, try.random.pl)
plot(ring.size, random.pl, type="b")

pause()

### Plot again, logarithmic 'x' axis
plot(ring.size, random.pl, type="b", log="x")

pause()

### Transitivity, random graph, by definition
ecount(rg) / (vcount(rg)*(vcount(rg)-1)/2)
transitivity(rg, type="localaverage")

pause()

### Rewiring
ws2 <- watts.strogatz.game(1, 50, 3, p=0.1)
ws2$layout <- layout.circle
V(ws2)$size <- 3
plot(ws2, vertex.label=NA)
average.path.length(ws2)

pause()

### Path lengths in randomized lattices
try.rr.pl <- function(n, p) {
  g <- watts.strogatz.game(1, n, 3, p=p)
  average.path.length(g)
}
rr.pl.0.1 <- sapply(ring.size, try.rr.pl, p=0.1)
plot(ring.size, rr.pl.0.1, type="b")

pause()

### Logarithmic 'x' axis 
plot(ring.size, rr.pl.0.1, type="b", log="x")

pause()

### Create the graph in the Watts-Strogatz paper
ws.paper <- function(p, n=1000) {
  g <- watts.strogatz.game(1, n, 10, p=p)
  tr <- transitivity(g, type="localaverage")
  pl <- average.path.length(g)
  c(tr, pl)
}

pause()

### Do the simulation for a number of 'p' values
rewire.prob <- ((1:10)^4)/(10^4)
ws.result <- sapply(rewire.prob, ws.paper)
dim(ws.result)

pause()

### Plot it
plot(rewire.prob, ws.result[1,]/ws.result[1,1], log="x", pch=22,
     xlab="p", ylab="")
points(rewire.prob, ws.result[2,]/ws.result[2,1], pch=20)
legend("bottomleft", c(expression(C(p)/C(0)), expression(L(p)/L(0))),
       pch=c(22, 20))