From f8c4fe4ec87bdc289f06e55d0808a5a0c72b74a6 Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Tue, 7 Nov 2023 17:03:52 +0000 Subject: [PATCH] wip: chord-diagram implementation using mne https://mne.tools/mne-connectivity/stable/auto_examples/mne_inverse_label_connectivity.html#make-a-connectivity-plot --- pyneuroml/plot/Connectivity.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyneuroml/plot/Connectivity.py b/pyneuroml/plot/Connectivity.py index e2878c88..a70cad9a 100644 --- a/pyneuroml/plot/Connectivity.py +++ b/pyneuroml/plot/Connectivity.py @@ -33,3 +33,12 @@ def plot_connectivity_matrix(filename, level): handler.finalise_document() logger.info("Done with MatrixHandler...") + + +def plot_chord_diagram(filename): + """Plot a chord connectivity diagram + + :param filename: name of NeuroML file + :type filename: str + """ + pass