-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplots.html
169 lines (141 loc) · 5.17 KB
/
plots.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Remy Cohan's statistics and plotting scripts in Python & R showcasing research findings.">
<title>Statistics and Plotting Scripts in Python & R | Remy Cohan</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
line-height: 1.7;
color: #333;
background: linear-gradient(135deg, #f7f9fc, #dfe6e9);
}
header {
background: #2E86C1;
color: white;
text-align: center;
padding: 2rem 0;
font-size: 2.5rem;
font-weight: 600;
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
nav {
display: flex;
justify-content: center;
gap: 20px;
padding: 10px 0;
background-color: #333;
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s, transform 0.2s;
}
nav a:hover {
background-color: #555;
transform: scale(1.05);
}
.sidebar {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 250px;
background-color: #34495e;
padding: 20px 0;
box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
overflow-y: auto;
}
.sidebar h3,
.sidebar a {
color: white;
margin-left: 20px;
text-decoration: none;
display: block;
margin-bottom: 20px;
transition: color 0.3s;
}
.sidebar a:hover {
color: #bdc3c7;
}
main {
margin-left: 270px;
padding: 40px;
background-color: #ffffff;
box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
h1 {
font-weight: 600;
margin-bottom: 20px;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
nav {
flex-direction: column;
align-items: center;
}
nav a {
margin-bottom: 10px;
}
.sidebar {
position: relative;
width: 100%;
height: auto;
}
main {
margin-left: 0;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>Remy Cohan</header>
<!-- Navigation -->
<nav>
<a href="index.html">Home</a>
<a href="Projects.html">Current Projects</a>
<a href="nifti_viewer.html">Interactive MRI Viewer</a>
<a href="simulations_ml.html">Simulation and ML</a>
<a href="neuro_analysis.html">Neuroimaging Analysis Scripts</a>
<a href="posters.html">Conference Posters</a>
</nav>
<!-- Sidebar -->
<aside class="sidebar">
<h3>Quick Links</h3>
<a href="https://github.com/CohanR/MRSpectroscopy_GABA_Epilepsy">MRS, GABA and Epilepsy Analysis</a>
<a href="https://github.com/CohanR/fMRI_Granger_Causality_Remy" target="_blank">Granger Causality fMRI</a>
<a href="https://github.com/CohanR/Oral_AntiCoagulation_MCA_Infarct">Structural Equation Modeling in Stroke</a>
</aside>
<!-- Main Content -->
<main>
<h1>Statistics and Plotting Scripts in Python & R</h1>
<p>Below are a few of my projects and their corresponding codes:</p>
<section>
<h2>MR Spectroscopy Analysis of GABA and Glutamate Levels in Relation to Anti Epileptic Drugs</h2>
<img src="images/descriptive_boxplots.png" alt="Descriptive Stats and Boxplots" style="max-width:100%; height:auto;">
<!-- Inserting a second image -->
<img src="images/correlations.png" alt="Correlation" style="max-width:100%; height:auto;">
<p>Checkout the MRS, GABA and Epilepsy Data Analysis on GitHub:</p>
<a href="https://github.com/CohanR/MRSpectroscopy_GABA_Epilepsy" target="_blank">View the GitHub Repository</a>
</section>
<section>
<h2>Granger Causality: fMRI Data Region of Interest (ROI-ROI) analysis</h2>
<img src="images/granger_netwrok.png" alt="Descriptive Stats and Boxplots" style="max-width:100%; height:auto;">
<!-- Inserting a second image -->
<img src="images/granger_correlation_RC.png" alt="Correlation" style="max-width:100%; height:auto;">
<p>Checkout the Granger Causality and Region of Interest Analysis of fMRI data:</p>
<a href="https://github.com/CohanR/fMRI_Granger_Causality_Remy" target="_blank">View the GitHub Repository</a>
</section>
</main>
</body>
</html>