Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NeuroDP
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Aarón Pérez
NeuroDP
Commits
a003bb6d
Commit
a003bb6d
authored
3 years ago
by
Aarón Pérez
Browse files
Options
Downloads
Patches
Plain Diff
removed limits in the plot
parent
7642e9ce
Branches
master
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
NeuroDP_framework.py
+2
-2
2 additions, 2 deletions
NeuroDP_framework.py
with
2 additions
and
2 deletions
NeuroDP_framework.py
+
2
−
2
View file @
a003bb6d
...
...
@@ -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))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment