Graph stats
Graph Stats
connected_components_per_ts(graph, network_name=None, plot_path='./')
Plot number of connected components per timestamp Parameters: graph: a list containing graph snapshots network_name: name of the graph to be used in the output file name plot_path: path to save the output figure
Source code in tgx/utils/stat.py
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 |
|
degree_density(graph, k=10, network_name=None, plot_path='./')
Plot density map of node degrees per time window Parameters: graph_edgelist: Dictionary containing graph data k: number of time windows network_name: name of the graph to be used in the output file name plot_path: path to save the output figure
Source code in tgx/utils/stat.py
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 |
|
degree_over_time(graph, network_name, filepath='./')
Plot average degree per timestamp. Parameters: graph: Graph object created by tgx.Graph containing edgelist network_name: name of the graph to be used in the output file name filepath: path to save the output figure
Source code in tgx/utils/stat.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|
edges_over_time(graph, network_name=None, filepath='./')
Plot number of edges per timestamp. Parameters: graph: Graph object created by tgx.Graph containing edgelist network_name: name of the graph to be used in the output file name filepath: path to save the output figure
Source code in tgx/utils/stat.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
get_avg_degree(graph)
Calculate average degree over the timestamps Parameters: graph: Graph object created by tgx.Graph containing edgelist
Source code in tgx/utils/stat.py
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
|
get_avg_e_per_ts(graph_edgelist)
Calculate the average number of edges per timestamp
Parameters:
Name | Type | Description | Default |
---|---|---|---|
graph
|
Graph object created by tgx.Graph containing edgelist |
required |
Source code in tgx/utils/stat.py
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
|
get_avg_node_activity(graph)
Calculate the average node activity, the proportion of time steps a node is present Parameters: graph: Graph object created by tgx.Graph containing edgelist
Source code in tgx/utils/stat.py
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 |
|
get_avg_node_engagement(graph)
Calculate the average node engagement per timestamp, the average number of distinct nodes that establish at least one new connection. Parameters: graph_edgelist: Dictionary containing graph data
Source code in tgx/utils/stat.py
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 |
|
get_novelty(graph)
Calculate the novelty index Parameters: graph: Graph object created by tgx.Graph containing edgelist
Source code in tgx/utils/stat.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 |
|
get_num_timestamps(graph_edgelist)
Calculate the number of timestamps Parameters: graph: Graph object created by tgx.Graph containing edgelist
Source code in tgx/utils/stat.py
184 185 186 187 188 189 190 191 |
|
get_num_unique_edges(graph)
Calculate the number of unique edges Parameters: graph: Graph object created by tgx.Graph containing edgelist
Source code in tgx/utils/stat.py
193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
|
get_reoccurrence(graph, test_ratio=0.15)
Calculate the recurrence index Parameters: graph: Graph object created by tgx.Graph containing edgelist test_ratio: The ratio to split the data chronologically
Source code in tgx/utils/stat.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
|
get_surprise(graph, test_ratio=0.15)
Calculate the surprise index Parameters: graph: Graph object created by tgx.Graph containing edgelist test_ratio: The ratio to split the data chronologically
Source code in tgx/utils/stat.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
|
nodes_and_edges_over_time(graph, network_name, filepath='./')
Plot number of nodes per timestamp and number of edges per timestamp in one fiugre. Parameters: graph: Graph object created by tgx.Graph containing edgelist network_name: name of the graph to be used in the output file name filepath: path to save the output figure
Source code in tgx/utils/stat.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
nodes_over_time(graph, network_name, filepath='./')
Plot number of active nodes per timestamp. Parameters: graph: Graph object created by tgx.Graph containing edgelist network_name: name of the graph to be used in the output file name filepath: path to save the output figure
Source code in tgx/utils/stat.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
|
size_connected_components(graph)
Calculate the sizes of connected components per timestamp Returns: list[list]: A list containing lists of sizes of connected components for each timestamp.
Source code in tgx/utils/stat.py
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 |
|