Experiment 20250411-BROD

Beliefs echo chambers are observed in almost all runs
2026-02-18: The rewiring procedure was not based on expected opinions and beliefs (see [20260217-BROD])

Note. It has been found that the code implementing rewiring was not taking into account the current opinions and beliefs but those at the beginning of the workflow instead. Although this does not impact the main results of the notebook, the data is not reliable anymore. These experiments have been corrected (see [20260209-BROD] and [20260217-BROD]).

Experiment design

Date: 2025-04-11

Designer: Hiro KATAOKA (University of Tsukuba)

Hypotheses: Echo chambers are observed if beliefs evolve independently of opinions

100 agents; 1 runs; 5000 games

Variables

fixed variables: EPSILON WORKFLOW TOPIC ATOM PACTIVE PREWRITE NBITERATIONS NBAGENTS NBRUNS ALPHA MU REWRITE VALUE PREHOC

controled variables: DELTAS SEEDS

dependent variables: eb

Values

DELTAS: ['1', '2', '3', '4', '5', '6', '7']
SEEDS: ['544371', '315590', '903997', '779659', '556198', '160590', '103848', '94821', '501765', '722393', '908149', '490361', '170743', '808653', '204557', '720126', '24083', '756485', '970547', '909432']

Measures

Before testing the hypothesis, we define the measures needed to check them. Let $A$ be the set of agents. Let $\mathcal S^t$ be the set of strongly connected components of the network of agents at time $t$.

eb (Belief echo chamber)

This measure counts the number of communities (i.e., strongly connected components) such that:

  • they are segregated, i.e., $L^t(C)\leq 0.5$;
  • beliefs are homogeneous, i.e., $M_B^t(C)=0$ (or equivalently, $\forall a,a'\in C$, $B_a^t=B_{a'}^t$);
  • opinions have been reinforced, i.e., $D_B^t(C)$,

where

$$ L^t(C)=\frac{|\{(a,a')\in N^t;a\in C\land a'\notin C\}|}{|\{(a,a')\in N^t;a\in C\}|}, $$

$$ M_B^t(C) = \max_{a,a'\in C}d_B(B_a^t,B_{a'}^t) $$

and

$$ D_B^t(C)=\forall s\in [t_C,T),M_B^s(C)\geq M_B^{s+1}(C). $$

Here, $d_B$ is the Hamming distance over the models of two beliefs:

$$ d_B(B,B')=|\mathcal M(B)\setminus\mathcal M(B')|+|\mathcal M(B')\setminus\mathcal M(B)|. $$

More formally, $eb$ is defined as:

$$ eb^t=|\{C\in\mathcal S^t;L^t(C)\leq 0.5\land M_B^t(C)=0\land D_B^t(C)\}| $$

Experiment

Date: 2025-04-11

Performer: Hiro KATAOKA (University of Tsukuba)

The whole experiment, from scratch, can be executed through:

In principle, this could be generated from command line through:

# only once, not checked in
$ bash utils/clone.sh 

# depends on ${HASH}, if it does not change, no need to recompile
# to compile a further version use 'last' as argument
$ bash utils/compile.sh

# Perform experiments
$ bash script.sh

# The analysis is done through jupyter
$ jupyter notebook &
# Do not forget to trust the notebook

# Before commiting the notebook
$ nb-clean -e notebook.ipynb

# suppresses results and experiments
$ bash utils/cleanup.sh

# bash utils/anonymize.sh

Parameter file: params.sh

Executed command (script.sh):

#!/bin/bash

. params.sh

set -u
mkdir -p ${RESDIR}

MAX_PROCESS=10
current_process=0

# run

date > ${RESDIR}/log.txt

for delta in ${DELTAS}
do
for seed in ${SEEDS}
do
EXP=${delta}-${seed}
mkdir -p ${RESDIR}/${EXP}

echo ${EXP}
./${SIMDIR}/soba --seed ${seed} --dir "${RESDIR}/${EXP}" --nbAgent ${NBAGENTS} \
    --tick ${NBITERATIONS} --atoms ${ATOM} --update ${WORKFLOW} \
    --prehoc "${PREHOC}" \
    --mu "${MU}" --alpha "${ALPHA}" --rewrite ${REWRITE} \
    --pUnfollow "${PREWRITE}" --pActive "${PACTIVE}" --epsilon "${EPSILON}"  \
    --delta ${delta} \
    --values """`cat ${TEMPLATEDIR}/val-${VALUES}.json`""" \
    --topics "${TOPIC}" &
current_process=$((current_process + 1))

if [[ $current_process = $MAX_PROCESS ]]; then
wait
current_process=0
fi

done
done


date >> ${RESDIR}/log.txt

# analyse

Hardware: AMD EPYC 7302P (16) @ 3.000GHz, Memory 128GB

OS: Ubuntu 22.04.5 LTS x86_64

Nim version: 2.2.0

Simulator version: 8244359cd4a790a216e5c162fe0faa9f6ffc0754

Duration and Output

  • Duration: 11 minutes and 30 seconds
  • Output: 2.2 GB

Raw Results

Raw results are available at Zenodo:

DOI:10.5281/zenodo.15194069

Analysis

Before analysis: stabilization check

Before we analyze the results, we test whether everything are stable.

Beliefs

The following table shows some statistic of the distribution of the minimal time $T_B'$ and $T_N'$ such that:

  • $\forall t\in [T_B',T]$ and $\forall a\in A$, $B_a^t=B_a^T$;
  • $\forall t\in [T_N',T]$ and $\forall a\in A$, $N_a^t=N_a^T$.
Out[13]:
beliefs network
count 140.00 140.00
mean 320.23 2815.81
std 440.81 2463.19
min 10.00 0.00
25% 18.00 3.00
50% 157.50 4995.50
75% 512.25 5000.00
max 2919.00 5000.00

It shows that beliefs are stable after $T$ interactions.

However, the network never stabilizes in some cases. In fact, in 78 experiments out of 140, $T_N'$ is larger than $4500$:

Out[14]:
beliefs network
1-544371 512 5000
1-315590 520 5000
1-903997 508 5000
1-779659 551 5000
1-556198 615 5000
1-160590 488 5000
1-103848 1444 5000
1-94821 844 5000
1-501765 378 5000
1-722393 403 5000
1-908149 645 5000
1-490361 2919 5000
1-170743 557 5000
1-808653 792 5000
1-204557 2148 5000
1-720126 715 5000
1-24083 376 5000
1-756485 2027 5000
1-970547 418 5000
1-909432 872 5000
2-544371 916 5000
2-315590 335 5000
2-903997 389 4999
2-779659 786 5000
2-556198 312 5000
2-160590 319 4999
2-103848 360 5000
2-94821 453 5000
2-501765 391 5000
2-722393 537 5000
2-908149 304 5000
2-490361 1203 5000
2-170743 233 5000
2-808653 370 5000
2-204557 791 5000
2-720126 513 5000
2-24083 358 5000
2-756485 985 5000
2-970547 555 5000
2-909432 647 5000
3-544371 790 4995
3-315590 559 5000
3-903997 495 5000
3-779659 363 4993
3-556198 277 4997
3-160590 827 4997
3-103848 348 5000
3-94821 925 5000
3-501765 165 4999
3-722393 606 4998
3-908149 458 5000
3-170743 561 4998
3-720126 251 4999
3-24083 371 4999
3-756485 454 4993
3-970547 265 5000
4-903997 192 4999
4-779659 38 5000
4-556198 1235 4996
4-103848 17 5000
4-94821 65 5000
4-501765 250 4998
4-722393 422 4999
4-908149 15 4995
4-170743 214 4999
4-808653 768 4999
4-204557 18 5000
4-720126 344 4995
4-24083 150 4999
4-970547 26 4980
4-909432 549 5000
5-544371 14 4993
5-160590 14 4998
5-908149 16 4992
5-490361 19 4999
5-170743 14 5000
5-720126 11 4998
6-779659 30 4999

This is because for some agents,

$$ |N_a^T|\geq |\{a'\in A; B_a^T=B_{a'}^T\}| $$

and thus $a$ has to find other concordant agent $a'$ who is not in $N_a$ while this is impossible. We call such agents as unstable agents.

Out[16]:
unstables
1-544371 28
1-315590 39
1-903997 37
1-779659 47
1-556198 35
1-160590 37
1-103848 40
1-94821 37
1-501765 33
1-722393 44
1-908149 45
1-490361 42
1-170743 34
1-808653 37
1-204557 42
1-720126 37
1-24083 37
1-756485 37
1-970547 48
1-909432 42
2-544371 9
2-315590 7
2-903997 7
2-779659 10
2-556198 8
2-160590 9
2-103848 6
2-94821 12
2-501765 11
2-722393 9
2-908149 5
2-490361 10
2-170743 12
2-808653 8
2-204557 6
2-720126 10
2-24083 12
2-756485 9
2-970547 12
2-909432 9
3-544371 1
3-315590 6
3-903997 3
3-779659 1
3-556198 2
3-160590 3
3-103848 1
3-94821 2
3-501765 3
3-722393 3
3-908149 4
3-490361 0
3-170743 4
3-808653 0
3-204557 0
3-720126 1
3-24083 2
3-756485 1
3-970547 4
3-909432 0
4-544371 0
4-315590 0
4-903997 1
4-779659 1
4-556198 1
4-160590 0
4-103848 1
4-94821 3
4-501765 1
4-722393 1
4-908149 1
4-490361 0
4-170743 1
4-808653 1
4-204557 2
4-720126 2
4-24083 2
4-756485 0
4-970547 1
4-909432 1
5-544371 1
5-315590 0
5-903997 0
5-779659 0
5-556198 0
5-160590 1
5-103848 0
5-94821 0
5-501765 0
5-722393 0
5-908149 1
5-490361 1
5-170743 1
5-808653 0
5-204557 0
5-720126 1
5-24083 0
5-756485 0
5-970547 0
5-909432 0
6-544371 0
6-315590 0
6-903997 0
6-779659 1
6-556198 0
6-160590 0
6-103848 0
6-94821 0
6-501765 0
6-722393 0
6-908149 0
6-490361 0
6-170743 0
6-808653 0
6-204557 0
6-720126 0
6-24083 0
6-756485 0
6-970547 0
6-909432 0
7-544371 0
7-315590 0
7-903997 0
7-779659 0
7-556198 0
7-160590 0
7-103848 0
7-94821 0
7-501765 0
7-722393 0
7-908149 0
7-490361 0
7-170743 0
7-808653 0
7-204557 0
7-720126 0
7-24083 0
7-756485 0
7-970547 0
7-909432 0

We test whether the two sets of the experiments are the same:

  • the experiments whose $T'$ is larger than $4500$;
  • the experiments such that there are at least one unstable agents.
They are the same.

This means that unstable agents prevent the network from stabilizing. Thus, the network has been stable after $T$ iterations if this is possible.

Out[20]:
scc
count 140.00
mean 1757.66
std 2265.10
min 0.00
25% 0.00
50% 43.50
75% 4945.50
max 5000.00
Out[21]:
42

Calculating the measures

As checked before, everything has been stable if this is possible. Now we compute the measures.

Out[26]:
delta seed component agents_component singleton agents_singleton segregation agents_segregation homogeneity agents_homogeneity reinforcing agents_reinforcing belecho agents_belecho
1-544371 1 544371 12 100 6 6 6 94 11 62 12 100 5 56
1-315590 1 315590 17 100 5 5 6 81 15 74 17 100 5 59
1-903997 1 903997 20 100 9 9 6 81 19 81 20 100 5 62
1-779659 1 779659 7 100 3 3 4 97 6 49 7 100 3 46
1-556198 1 556198 18 100 12 12 5 86 17 69 18 100 4 55
1-160590 1 160590 19 100 12 12 6 86 18 68 19 100 5 54
1-103848 1 103848 17 100 9 9 7 89 16 64 17 100 6 53
1-94821 1 94821 15 100 6 6 7 90 14 72 15 100 6 62
1-501765 1 501765 13 100 7 7 6 93 12 53 13 100 5 46
1-722393 1 722393 11 100 6 6 4 92 10 54 11 100 3 46
1-908149 1 908149 11 100 5 5 6 95 10 54 11 100 5 49
1-490361 1 490361 12 100 3 3 7 93 11 57 12 100 6 50
1-170743 1 170743 14 100 6 6 6 86 12 64 14 100 5 56
1-808653 1 808653 20 100 6 6 9 84 19 83 20 100 8 67
1-204557 1 204557 18 100 9 9 8 89 17 71 18 100 7 60
1-720126 1 720126 15 100 8 8 5 88 14 64 15 100 4 52
1-24083 1 24083 12 100 7 7 5 93 11 57 12 100 4 50
1-756485 1 756485 6 100 1 1 5 99 5 41 6 100 4 40
1-970547 1 970547 7 100 3 3 4 97 6 47 7 100 3 44
1-909432 1 909432 10 100 3 3 5 93 9 59 10 100 4 52
2-544371 2 544371 15 100 8 8 4 78 14 93 15 100 4 78
2-315590 2 315590 12 100 6 6 3 88 12 100 12 100 3 88
2-903997 2 903997 22 100 17 17 3 78 20 24 22 100 2 5
2-779659 2 779659 17 100 10 10 5 86 17 100 17 100 5 86
2-556198 2 556198 10 100 4 4 5 94 10 100 10 100 5 94
2-160590 2 160590 9 100 3 3 4 91 8 96 9 100 4 91
2-103848 2 103848 11 100 6 6 3 87 10 95 11 100 3 87
2-94821 2 94821 15 100 9 9 4 86 15 100 15 100 4 86
2-501765 2 501765 17 100 10 10 4 82 17 100 17 100 4 82
2-722393 2 722393 18 100 11 11 7 89 18 100 18 100 7 89
2-908149 2 908149 14 100 9 9 4 89 14 100 14 100 4 89
2-490361 2 490361 16 100 9 9 5 84 15 96 16 100 5 84
2-170743 2 170743 16 100 10 10 3 76 16 100 16 100 3 76
2-808653 2 808653 18 100 10 10 6 86 16 24 18 100 4 10
2-204557 2 204557 13 100 8 8 3 88 12 21 13 100 2 9
2-720126 2 720126 14 100 9 9 4 89 14 100 14 100 4 89
2-24083 2 24083 14 100 6 6 7 92 14 100 14 100 7 92
2-756485 2 756485 21 100 16 16 5 84 20 36 21 100 4 20
2-970547 2 970547 15 100 9 9 3 85 14 21 15 100 2 6
2-909432 2 909432 11 100 5 5 5 92 10 83 11 100 4 75
3-544371 3 544371 6 100 5 5 1 95 6 100 6 100 1 95
3-315590 3 315590 7 100 4 4 2 94 7 100 7 100 2 94
3-903997 3 903997 8 100 5 5 2 93 8 100 8 100 2 93
3-779659 3 779659 6 100 4 4 2 96 6 100 6 100 2 96
3-556198 3 556198 9 100 7 7 2 93 9 100 9 100 2 93
3-160590 3 160590 10 100 6 6 1 85 10 100 10 100 1 85
3-103848 3 103848 7 100 5 5 1 89 7 100 7 100 1 89
3-94821 3 94821 11 100 6 6 2 88 11 100 11 100 2 88
3-501765 3 501765 7 100 5 5 2 95 7 100 7 100 2 95
3-722393 3 722393 7 100 4 4 2 94 6 94 7 100 1 88
3-908149 3 908149 4 100 0 0 2 93 4 100 4 100 2 93
3-490361 3 490361 7 100 4 4 3 96 7 100 7 100 3 96
3-170743 3 170743 8 100 4 4 3 94 8 100 8 100 3 94
3-808653 3 808653 9 100 6 6 3 94 9 100 9 100 3 94
3-204557 3 204557 3 100 1 1 2 99 3 100 3 100 2 99
3-720126 3 720126 11 100 8 8 2 89 10 96 11 100 1 85
3-24083 3 24083 9 100 6 6 3 94 9 100 9 100 3 94
3-756485 3 756485 6 100 2 2 2 92 6 100 6 100 2 92
3-970547 3 970547 9 100 6 6 1 90 9 100 9 100 1 90
3-909432 3 909432 7 100 4 4 2 94 7 100 7 100 2 94
4-544371 4 544371 5 100 4 4 1 96 5 100 5 100 1 96
4-315590 4 315590 3 100 2 2 1 98 3 100 3 100 1 98
4-903997 4 903997 5 100 4 4 1 96 5 100 5 100 1 96
4-779659 4 779659 4 100 3 3 1 97 4 100 4 100 1 97
4-556198 4 556198 5 100 3 3 2 97 5 100 5 100 2 97
4-160590 4 160590 4 100 3 3 1 97 4 100 4 100 1 97
4-103848 4 103848 2 100 1 1 1 99 2 100 2 100 1 99
4-94821 4 94821 5 100 3 3 2 97 5 100 5 100 2 97
4-501765 4 501765 3 100 1 1 1 97 3 100 3 100 1 97
4-722393 4 722393 5 100 3 3 2 97 5 100 5 100 2 97
4-908149 4 908149 4 100 3 3 1 97 4 100 4 100 1 97
4-490361 4 490361 6 100 3 3 3 97 6 100 6 100 3 97
4-170743 4 170743 5 100 3 3 2 97 4 5 5 100 1 2
4-808653 4 808653 2 100 0 0 2 100 2 100 2 100 2 100
4-204557 4 204557 6 100 5 5 1 95 6 100 6 100 1 95
4-720126 4 720126 3 100 1 1 1 97 3 100 3 100 1 97
4-24083 4 24083 4 100 3 3 1 97 4 100 4 100 1 97
4-756485 4 756485 2 100 1 1 1 99 2 100 2 100 1 99
4-970547 4 970547 9 100 8 8 1 92 9 100 9 100 1 92
4-909432 4 909432 3 100 1 1 1 97 3 100 3 100 1 97
5-544371 5 544371 4 100 3 3 1 97 4 100 4 100 1 97
5-315590 5 315590 2 100 1 1 1 99 2 100 2 100 1 99
5-903997 5 903997 1 100 0 0 1 100 1 100 1 100 1 100
5-779659 5 779659 2 100 1 1 1 99 2 100 2 100 1 99
5-556198 5 556198 1 100 0 0 1 100 1 100 1 100 1 100
5-160590 5 160590 5 100 4 4 1 96 5 100 5 100 1 96
5-103848 5 103848 2 100 1 1 1 99 2 100 2 100 1 99
5-94821 5 94821 3 100 2 2 1 98 3 100 3 100 1 98
5-501765 5 501765 1 100 0 0 1 100 1 100 1 100 1 100
5-722393 5 722393 2 100 1 1 1 99 2 100 2 100 1 99
5-908149 5 908149 3 100 2 2 1 98 3 100 3 100 1 98
5-490361 5 490361 5 100 4 4 1 96 5 100 5 100 1 96
5-170743 5 170743 5 100 4 4 1 96 5 100 5 100 1 96
5-808653 5 808653 1 100 0 0 1 100 1 100 1 100 1 100
5-204557 5 204557 3 100 2 2 1 98 2 2 3 100 0 0
5-720126 5 720126 4 100 3 3 1 97 4 100 4 100 1 97
5-24083 5 24083 2 100 1 1 1 99 2 100 2 100 1 99
5-756485 5 756485 3 100 2 2 1 98 3 100 3 100 1 98
5-970547 5 970547 6 100 5 5 1 95 6 100 6 100 1 95
5-909432 5 909432 2 100 1 1 1 99 2 100 2 100 1 99
6-544371 6 544371 5 100 4 4 1 96 5 100 5 100 1 96
6-315590 6 315590 2 100 1 1 1 99 2 100 2 100 1 99
6-903997 6 903997 1 100 0 0 1 100 1 100 1 100 1 100
6-779659 6 779659 4 100 3 3 1 97 4 100 4 100 1 97
6-556198 6 556198 3 100 2 2 1 98 3 100 3 100 1 98
6-160590 6 160590 5 100 4 4 1 96 5 100 5 100 1 96
6-103848 6 103848 2 100 1 1 1 99 2 100 2 100 1 99
6-94821 6 94821 5 100 4 4 1 96 5 100 5 100 1 96
6-501765 6 501765 1 100 0 0 1 100 1 100 1 100 1 100
6-722393 6 722393 2 100 1 1 1 99 2 100 2 100 1 99
6-908149 6 908149 3 100 2 2 1 98 3 100 3 100 1 98
6-490361 6 490361 3 100 2 2 1 98 3 100 3 100 1 98
6-170743 6 170743 4 100 3 3 1 97 4 100 4 100 1 97
6-808653 6 808653 1 100 0 0 1 100 1 100 1 100 1 100
6-204557 6 204557 3 100 2 2 1 98 3 100 3 100 1 98
6-720126 6 720126 4 100 3 3 1 97 4 100 4 100 1 97
6-24083 6 24083 2 100 1 1 1 99 2 100 2 100 1 99
6-756485 6 756485 3 100 2 2 1 98 3 100 3 100 1 98
6-970547 6 970547 6 100 5 5 1 95 6 100 6 100 1 95
6-909432 6 909432 3 100 2 2 1 98 3 100 3 100 1 98
7-544371 7 544371 5 100 4 4 1 96 5 100 5 100 1 96
7-315590 7 315590 2 100 1 1 1 99 2 100 2 100 1 99
7-903997 7 903997 1 100 0 0 1 100 1 100 1 100 1 100
7-779659 7 779659 2 100 1 1 1 99 2 100 2 100 1 99
7-556198 7 556198 3 100 2 2 1 98 3 100 3 100 1 98
7-160590 7 160590 5 100 4 4 1 96 5 100 5 100 1 96
7-103848 7 103848 2 100 1 1 1 99 2 100 2 100 1 99
7-94821 7 94821 5 100 4 4 1 96 5 100 5 100 1 96
7-501765 7 501765 1 100 0 0 1 100 1 100 1 100 1 100
7-722393 7 722393 2 100 1 1 1 99 2 100 2 100 1 99
7-908149 7 908149 3 100 2 2 1 98 3 100 3 100 1 98
7-490361 7 490361 3 100 2 2 1 98 2 2 3 100 0 0
7-170743 7 170743 3 100 2 2 1 98 3 100 3 100 1 98
7-808653 7 808653 1 100 0 0 1 100 1 100 1 100 1 100
7-204557 7 204557 3 100 2 2 1 98 3 100 3 100 1 98
7-720126 7 720126 4 100 3 3 1 97 4 100 4 100 1 97
7-24083 7 24083 2 100 1 1 1 99 2 100 2 100 1 99
7-756485 7 756485 3 100 2 2 1 98 3 100 3 100 1 98
7-970547 7 970547 6 100 5 5 1 95 6 100 6 100 1 95
7-909432 7 909432 3 100 2 2 1 98 3 100 3 100 1 98

Following boxplot shows the distribution of $eb$:

Out[27]:
<Axes: >
No description has been provided for this image

Clearly, in some experiments we could not observe belief echo chambers. The list of such experiments is as follows:

Out[28]:
delta seed component agents_component singleton agents_singleton segregation agents_segregation homogeneity agents_homogeneity reinforcing agents_reinforcing belecho agents_belecho
5-204557 5 204557 3 100 2 2 1 98 2 2 3 100 0 0
7-490361 7 490361 3 100 2 2 1 98 2 2 3 100 0 0

The following two plots are the plots corresponding to the two experiments listed above.

5-204557
No description has been provided for this image
7-490361
No description has been provided for this image

We can observe that beliefs are not homogeneous.

Overall results in a table

Out[31]:
component singleton segregation homogeneity reinforcing belecho
count 140.00 140.00 140.00 140.00 140.00 140.00
mean 7.04 4.04 2.36 6.76 7.04 2.14
std 5.44 3.27 1.96 5.13 5.44 1.70
min 1.00 0.00 1.00 1.00 1.00 0.00
25% 3.00 2.00 1.00 3.00 3.00 1.00
50% 5.00 3.00 1.00 5.00 5.00 1.00
75% 11.00 6.00 3.00 10.00 11.00 3.00
max 22.00 17.00 9.00 20.00 22.00 8.00
Out[32]:
agents_component agents_singleton agents_segregation agents_homogeneity agents_reinforcing agents_belecho
count 140.0 140.00 140.00 140.00 140.0 140.00
mean 100.0 4.04 94.34 89.51 100.0 84.09
std 0.0 3.27 5.35 22.82 0.0 24.80
min 100.0 0.00 76.00 2.00 100.0 0.00
25% 100.0 2.00 92.00 99.00 100.0 85.75
50% 100.0 3.00 96.00 100.00 100.0 96.00
75% 100.0 6.00 98.00 100.00 100.0 98.00
max 100.0 17.00 100.00 100.00 100.0 100.00

Some plots

Out[34]:
delta                      2
seed                  908149
component                 14
agents_component         100
singleton                  9
agents_singleton           9
segregation                4
agents_segregation        89
homogeneity               14
agents_homogeneity       100
reinforcing               14
agents_reinforcing       100
belecho                    4
agents_belecho            89
Name: 2-908149, dtype: int64
No description has been provided for this image

All plots

We show the final networks of all experiments.

1-544371

No description has been provided for this image

1-315590

No description has been provided for this image

1-903997

No description has been provided for this image

1-779659

No description has been provided for this image

1-556198

No description has been provided for this image

1-160590

No description has been provided for this image

1-103848

No description has been provided for this image

1-94821

No description has been provided for this image

1-501765

No description has been provided for this image

1-722393

No description has been provided for this image

1-908149

No description has been provided for this image

1-490361

No description has been provided for this image

1-170743

No description has been provided for this image

1-808653

No description has been provided for this image

1-204557

No description has been provided for this image

1-720126

No description has been provided for this image

1-24083

No description has been provided for this image

1-756485

No description has been provided for this image

1-970547

No description has been provided for this image

1-909432

No description has been provided for this image

2-544371

No description has been provided for this image

2-315590

No description has been provided for this image

2-903997

No description has been provided for this image

2-779659

No description has been provided for this image

2-556198

No description has been provided for this image

2-160590

No description has been provided for this image

2-103848

No description has been provided for this image

2-94821

No description has been provided for this image

2-501765

No description has been provided for this image

2-722393

No description has been provided for this image

2-908149

No description has been provided for this image

2-490361

No description has been provided for this image

2-170743

No description has been provided for this image

2-808653

No description has been provided for this image

2-204557

No description has been provided for this image

2-720126

No description has been provided for this image

2-24083

No description has been provided for this image

2-756485

No description has been provided for this image

2-970547

No description has been provided for this image

2-909432

No description has been provided for this image

3-544371

No description has been provided for this image

3-315590

No description has been provided for this image

3-903997

No description has been provided for this image

3-779659

No description has been provided for this image

3-556198

No description has been provided for this image

3-160590

No description has been provided for this image

3-103848

No description has been provided for this image

3-94821

No description has been provided for this image

3-501765

No description has been provided for this image

3-722393

No description has been provided for this image

3-908149

No description has been provided for this image

3-490361

No description has been provided for this image

3-170743

No description has been provided for this image

3-808653

No description has been provided for this image

3-204557

No description has been provided for this image

3-720126

No description has been provided for this image

3-24083

No description has been provided for this image

3-756485

No description has been provided for this image

3-970547

No description has been provided for this image

3-909432

No description has been provided for this image

4-544371

No description has been provided for this image

4-315590

No description has been provided for this image

4-903997

No description has been provided for this image

4-779659

No description has been provided for this image

4-556198

No description has been provided for this image

4-160590

No description has been provided for this image

4-103848

No description has been provided for this image

4-94821

No description has been provided for this image

4-501765

No description has been provided for this image

4-722393

No description has been provided for this image

4-908149

No description has been provided for this image

4-490361

No description has been provided for this image

4-170743

No description has been provided for this image

4-808653

No description has been provided for this image

4-204557

No description has been provided for this image

4-720126

No description has been provided for this image

4-24083

No description has been provided for this image

4-756485

No description has been provided for this image

4-970547

No description has been provided for this image

4-909432

No description has been provided for this image

5-544371

No description has been provided for this image

5-315590

No description has been provided for this image

5-903997

No description has been provided for this image

5-779659

No description has been provided for this image

5-556198

No description has been provided for this image

5-160590

No description has been provided for this image

5-103848

No description has been provided for this image

5-94821

No description has been provided for this image

5-501765

No description has been provided for this image

5-722393

No description has been provided for this image

5-908149

No description has been provided for this image

5-490361

No description has been provided for this image

5-170743

No description has been provided for this image

5-808653

No description has been provided for this image

5-204557

No description has been provided for this image

5-720126

No description has been provided for this image

5-24083

No description has been provided for this image

5-756485

No description has been provided for this image

5-970547

No description has been provided for this image

5-909432

No description has been provided for this image

6-544371

No description has been provided for this image

6-315590

No description has been provided for this image

6-903997

No description has been provided for this image

6-779659

No description has been provided for this image

6-556198

No description has been provided for this image

6-160590

No description has been provided for this image

6-103848

No description has been provided for this image

6-94821

No description has been provided for this image

6-501765

No description has been provided for this image

6-722393

No description has been provided for this image

6-908149

No description has been provided for this image

6-490361

No description has been provided for this image

6-170743

No description has been provided for this image

6-808653

No description has been provided for this image

6-204557

No description has been provided for this image

6-720126

No description has been provided for this image

6-24083

No description has been provided for this image

6-756485

No description has been provided for this image

6-970547

No description has been provided for this image

6-909432

No description has been provided for this image

7-544371

No description has been provided for this image

7-315590

No description has been provided for this image

7-903997

No description has been provided for this image

7-779659

No description has been provided for this image

7-556198

No description has been provided for this image

7-160590

No description has been provided for this image

7-103848

No description has been provided for this image

7-94821

No description has been provided for this image

7-501765

No description has been provided for this image

7-722393

No description has been provided for this image

7-908149

No description has been provided for this image

7-490361

No description has been provided for this image

7-170743

No description has been provided for this image

7-808653

No description has been provided for this image

7-204557

No description has been provided for this image

7-720126

No description has been provided for this image

7-24083

No description has been provided for this image

7-756485

No description has been provided for this image

7-970547

No description has been provided for this image

7-909432

No description has been provided for this image

Conclusion

We can observe belief echo chambers, while there are a few exceptions.

This file can be retrieved from URL https://sake.re/20250411-BROD