-
Notifications
You must be signed in to change notification settings - Fork 76
Whole Network Analysis (AIS)
Patricia Wollstadt edited this page Jul 18, 2018
·
1 revision
To analyse the whole network, use the analyse_network
method and provide the required data
and settings
arguments.
results = network_analysis.analyse_network(settings=settings,
data=data)
The algorithm will loop over all processes in the network and analyse each of them separately. The results will finally be combined in an Results object. By default, an FDR correction will be performed when combining the results from different processes (Benjamini, 1995, J Royal Stat Soc B, 57(1)). In order to skip the FDR correction, refer to the tutorial on Statistical Significance Tests.
The optional argument processes
can be passed to the analyse_network
method in order to restrict the analysis to a specific list of processes.
results = network_analysis.analyse_network(settings=settings,
data=data,
processes=[0, 2, 3])