From a003bb6d77cc5313ee56d2fb4c867e69f8f9553e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aar=C3=B3n=20P=C3=A9rez?= <a.perez.martin@fz-juelich.de> Date: Tue, 19 Oct 2021 18:24:52 +0200 Subject: [PATCH] removed limits in the plot --- NeuroDP_framework.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NeuroDP_framework.py b/NeuroDP_framework.py index 60e2e16..d0b67fb 100644 --- a/NeuroDP_framework.py +++ b/NeuroDP_framework.py @@ -124,8 +124,8 @@ def plot_FCSC(SC, FCloc, user_id): fig, ax = plt.subplots(ncols=2, figsize=(12, 3)) # fig.suptitle("Title for whole figure", fontsize=16) - sns.heatmap(FCloc, xticklabels='', yticklabels='', ax=ax[0], cmap='YlGnBu', vmin=-1, vmax=1) # coolwarm - sns.heatmap(SC / SC.max(), xticklabels='', yticklabels='', ax=ax[1], cmap='YlGnBu', vmin=-1, vmax=1) + sns.heatmap(FCloc, xticklabels='', yticklabels='', ax=ax[0], cmap='YlGnBu') # coolwarm + sns.heatmap(SC / SC.max(), xticklabels='', yticklabels='', ax=ax[1], cmap='YlGnBu') r = corrSCFC(SC, FCloc) # print("Correlation = " + str(r)) -- GitLab