Skip to content
Snippets Groups Projects
Commit a003bb6d authored by Aarón Pérez's avatar Aarón Pérez
Browse files

removed limits in the plot

parent 7642e9ce
Branches master
No related tags found
No related merge requests found
......@@ -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))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment