Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Resting-state EEG analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
s200431
Resting-state EEG analysis
Commits
12c039fc
Commit
12c039fc
authored
2 years ago
by
s200431
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://lab.compute.dtu.dk/s200431/resting-state-eeg-analysis
parents
343784a6
7cc39425
Branches
master
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.DS_Store
+0
-0
0 additions, 0 deletions
.DS_Store
FeatureEstimation.py
+1
-0
1 addition, 0 deletions
FeatureEstimation.py
PCA.py
+53
-0
53 additions, 0 deletions
PCA.py
with
54 additions
and
0 deletions
.DS_Store
+
0
−
0
View file @
12c039fc
No preview for this file type
This diff is collapsed.
Click to expand it.
FeatureEstimation.py
+
1
−
0
View file @
12c039fc
...
...
@@ -35,6 +35,7 @@ the different parts easier (Default shortcut: Ctrl + Shift + O)
# Set working directory
import
numpy
as
np
import
os
wkdir
=
"
/home/s200431
"
os
.
chdir
(
wkdir
)
...
...
This diff is collapsed.
Click to expand it.
PCA.py
0 → 100644
+
53
−
0
View file @
12c039fc
from
sklearn
import
decomposition
from
sklearn.preprocessing
import
StandardScaler
import
matplotlib.pyplot
as
plt
from
mpl_toolkits.mplot3d
import
Axes3D
import
numpy
as
np
def
PCA
(
X
,
y
,
n_components
):
fig
=
plt
.
figure
(
1
,
figsize
=
(
4
,
3
))
plt
.
clf
()
ax
=
fig
.
add_subplot
(
111
,
projection
=
"
3d
"
,
elev
=
48
,
azim
=
134
)
ax
.
set_position
([
0
,
0
,
0.95
,
1
])
# Standardize the data
scaler
=
StandardScaler
()
X
=
scaler
.
fit_transform
(
X
)
pca
=
decomposition
.
PCA
(
n_components
=
n_components
)
pca
.
fit
(
X
)
X
=
pca
.
transform
(
X
)
for
name
,
label
in
[(
"
CTRL
"
,
0
),
(
"
PTSD
"
,
1
)]:
ax
.
text3D
(
X
[
y
==
label
,
0
].
mean
(),
X
[
y
==
label
,
1
].
mean
(),
X
[
y
==
label
,
2
].
mean
(),
name
,
horizontalalignment
=
"
center
"
,
bbox
=
dict
(
alpha
=
0.5
,
edgecolor
=
"
w
"
,
facecolor
=
"
w
"
),
)
ax
.
scatter
(
X
[:,
0
],
X
[:,
1
],
X
[:,
2
],
c
=
y
,
cmap
=
plt
.
cm
.
nipy_spectral
,
edgecolor
=
"
k
"
,
)
ax
.
xaxis
.
set_ticklabels
([])
ax
.
yaxis
.
set_ticklabels
([])
ax
.
zaxis
.
set_ticklabels
([])
plt
.
show
()
# Save plot
Feature_savepath
=
"
./Figures/
"
plt
.
savefig
(
Feature_savepath
+
"
PCA_3D.png
"
,
dpi
=
300
)
return
"
PCA was complete without errors - check the plot in your chosen path
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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