1  Measures on sbn_assembly

An attempt to study the model properties

Author

Samuel Ortion

Published

October 1, 2023

Used libraries

library(ggplot2)

1.1 Evolution of connected components amount

connected_df <- read.table('../software/sbn_assembly/results/chronics_connected_components.dat', col.names=c("time", "Connected components"))
head(connected_df)
  time Connected.components
1    0                   99
2    1                   99
3    2                   99
4    3                   99
5    4                   99
6    5                   99
ggplot(aes(x=time, y=`Connected.components`), data=connected_df) + geom_point() + labs(y='connected components') + ggtitle("Aggregation of networks into a single large network")

Connected components number evolutions