-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplotStimFS.m
More file actions
425 lines (355 loc) · 10.7 KB
/
Copy pathplotStimFS.m
File metadata and controls
425 lines (355 loc) · 10.7 KB
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
%S. N. Pitts: 07-06-2022
function [] = plotStimFS(FS,S,k,logical)
%TRUE if raw data used
%FS is logged
%https://www.mathworks.com/matlabcentral/answers/414034-plotting-a-box-plot-and-a-time-series-on-the-same-graph-as-a-distribution-over-time-boxplot-resha
%% Plot configuration and basic descriptors
close all
%post deleted and interpolated data
%Table in workspace:
%FS (score related fluctuation index)
%Programs previously ran: AverageStimAmp.m, Flux.m
time = FS.("Time");
%% Right Data
figure
subplot(2,1,1)
hold on
yyaxis left
y = fillmissing(FS.("R_LFP Band Power FS"),'previous');
%y = FS.("R_LFP Band Power FS");
y = log(y);
plot(time, y,'k');
title('Right Side: FS')
xlabel('time (min)')
ylab = sprintf('FS (k=%d bins)',k);
ylabel(ylab)
Right_FS = y;
yyaxis right
right = [S.("Band of Interest (Hz)"){:}];
right = right(1:2:end);
plot(S.Date,right)
ylabel('Band of Interest (Hz)')
title('LFP_R_i_g_h_t FS')
hold off
subplot(2,1,2)
hold on
yyaxis left
stimx = [S.("Date Time (HH:mm:ss)"){:}];
stimy = [];
for i = 1:length(S.("Stim Amp - R/CH1 (mA)"))
stimy = [stimy;(S.("Stim Amp - R/CH1 (mA)"){i})];
end
scatter(stimx,stimy')
ylabel('Stim Amp (mA)')
yyaxis right
cla
right = [S.("Channel Names"){:}];
right = right(1:2:end);
cat = unique(right);
y=zeros(1,length(right));
%create categorical array
for i = 1:length(cat)
idx = find(right==cat(i));
y(idx) = i;
end
c = categorical(y,1:length(cat),[cat]);
right = [S.("Channel Names"){:}];
right = right(1:2:end);
plot(S.Date,c)
ylabel('Lead Configuration')
title('Right Hemisphere Stimulation and Channels')
hold off
if logical
savefig("RightStimFS-Raw")
else
savefig("RightStimFS-MedicalLP")
end
%% Right BoxChart
figure
hold on
TTimes = categorical(FS.("Time"));
n = height(FS);
Y = [];%data values
x = [];%data categories
for i = 1:n
%refrmat table info to compatible array
m = height(FS.('LFP Band Power - R/CH1'){i}); %length of peaks detected
Y = [Y;FS.('LFP Band Power - R/CH1'){i}]; %list of all values
xtick = repmat(TTimes(i),m,1);%list of value categories
x = [x;xtick];
end
boxchart(x,log(Y),"Orientation","vertical","Notch","on") %%LOG REMOVED
ylabel("Right LFP BP")
str = "Right LFP BP";
title(str)
hold off
savefig('RightLFPBoxCharts')
%% RIGHT LFP BOXCHART OVERLAY
figure
hold on
%%LEAD CONFIG
right = [S.("Channel Names"){:}];
right = right(1:2:end);
cat = unique(right);
y=zeros(1,length(right));
%create categorical array
for i = 1:length(cat)
idx = find(right==cat(i));
y(idx) = i;
end
c = categorical(y,1:length(cat),[cat]);
right = [S.("Channel Names"){:}];
right = right(1:2:end);
plot(S.Date,c)
ylabel('Lead Configuration')
title('Right Hemisphere Stimulation and Channels')
hold off
%%BOI
yyaxis right
right = [S.("Band of Interest (Hz)"){:}];
right = right(1:2:end);
plot(S.Date,right)
ylabel('Band of Interest (Hz)')
title('LFP_R_i_g_h_t FS')
hold off
savefig("RightParams")
%%BOXCHART HERE
%calc x and y
TTimes = categorical(FS.("Time"));
n = height(FS);
Y = [];%data values
x = [];%data categories
for i = 1:n
%refrmat table info to compatible array
m = height(FS.('LFP Band Power - R/CH1'){i}); %length of peaks detected
Y = [Y;FS.('LFP Band Power - R/CH1'){i}]; %list of all values
xtick = repmat(TTimes(i),m,1);%list of value categories
x = [x;xtick];
end
Right_LFP = Y;
%plot the boxchart
figure
hold on
b = tiledlayout(1,1)
ax1 = axes(b);
boxchart(x,log(Y),"Orientation","vertical","Notch","on","MarkerSize",2,"BoxFaceColor",'b') %%LOG REMOVED
ax1.YAxisLocation ='right';
%%STIMULATION
%stimx = [S.("Date Time (HH:mm:ss)"){:}];
stimx = S.("Date");
stimy = [];
x=[];
for i = 1:length(S.("Stim Amp - R/CH1 (mA)"))
m=height(S.("Stim Amp - R/CH1 (mA)"){i});
stimy = [stimy;(S.("Stim Amp - R/CH1 (mA)"){i})];
xtick = repmat(stimx(i),m,1);%list of value categories
x = [x;xtick];
end
stim = table(x,stimy);
hold on
%plot stim with axes settings
ax2 = axes(b);
stairs(stim.("x"),stim.("stimy"),'r','LineWidth',.7,'LineStyle','--')
ax2.XAxisLocation = 'top';
ax2.YAxisLocation = 'left';
ax2.Color = 'none';
ax1.Box = 'off';
ax2.Box = 'off';
ax2.YColor = 'r';
ax1.YColor = 'b';
ax1.YLabel.String = 'LFP Band Power';
ax2.YLabel.String = 'Stimulation (mA)';
enableDefaultInteractivity(ax1)
enableDefaultInteractivity(ax2)
title("Right: BrainSense Timeline")
if logical
savefig("RightStimIQR-Raw")
else
savefig("RightStimIQR-MedicalLP")
end
%% Left Data
figure
subplot(2,1,1)
hold on
yyaxis left
y = fillmissing(FS.("L_LFP Band Power FS"),'previous');
%y = FS.("L_LFP Band Power FS");
y = log(y);
plot(time, y,'k');
title('Left Side: FS')
xlabel('time (min)')
ylab = sprintf('FS (k=%d bins)',k);
ylabel(ylab)
Left_FS = y;
yyaxis right
left = [S.("Band of Interest (Hz)"){:}];
left = left(2:2:end); %%%%%%%%%%%%%%%%
plot(S.Date,left)
ylabel('Band of Interest (Hz)')
title('LFP_L_e_f_t FS')
hold off
subplot(2,1,2)
hold on
yyaxis left
stimx = [S.("Date Time (HH:mm:ss)"){:}];
stimy = [];
for i = 1:length(S.("Stim Amp - L/CH2 (mA)"))
stimy = [stimy;(S.("Stim Amp - L/CH2 (mA)"){i})];
end
scatter(stimx,stimy')
ylabel('Stim Amp (mA)')
yyaxis right
cla
left = [S.("Channel Names"){:}];
left = left(2:2:end); %%%%%%%
cat = unique(left);
y=zeros(1,length(left));
%create categorical array
for i = 1:length(cat)
idx = find(left==cat(i));
y(idx) = i;
end
c = categorical(y,1:length(cat),[cat]);
left = [S.("Channel Names"){:}];
left = left(2:2:end); %%%%%%%%%%
plot(S.Date,c)
ylabel('Lead Configuration')
title('Left Hemisphere Stimulation and Channels')
hold off
if logical
savefig("LeftStimFS-Raw")
else
savefig("LeftStimFS-MedicalLP")
end
%% Left Boxchart
figure
hold on
TTimes = categorical(FS.("Time"));
n = height(FS);
Y = [];%data values
x = [];%data categories
for i = 1:n
%refrmat table info to compatible array
m = height(FS.('LFP Band Power - L/CH2'){i}); %length of peaks detected
Y = [Y;FS.('LFP Band Power - L/CH2'){i}]; %list of all values
xtick = repmat(TTimes(i),m,1);%list of value categories
x = [x;xtick];
end
boxchart(x,log(Y),"Orientation","vertical","Notch","on") %%LOG REMOVED
ylabel("Left LFP BP")
str = "Left LFP BP";
title(str)
hold off
savefig('LeftLFPBoxChart')
%% LFP BOXCHART OVERLAY
figure
hold on
%%LEAD CONFIG
left = [S.("Channel Names"){:}];
left = left(2:2:end); %%%%%%%
cat = unique(left);
y=zeros(1,length(left));
%create categorical array
for i = 1:length(cat)
idx = find(left==cat(i));
y(idx) = i;
end
c = categorical(y,1:length(cat),[cat]);
left = [S.("Channel Names"){:}];
left = left(2:2:end); %%%%%%%%%%
plot(S.Date,c)
ylabel('Lead Configuration')
title('Left Hemisphere Stimulation and Channels')
hold off
%%BOI
yyaxis right
left = [S.("Band of Interest (Hz)"){:}];
left = left(2:2:end); %%%%%%%%%%%%%%%%
plot(S.Date,left)
ylabel('Band of Interest (Hz)')
title('LFP_L_e_f_t FS')
hold off
%%BOXCHART HERE
%calc x and y
TTimes = categorical(FS.("Time"));
n = height(FS);
Y = [];%data values
x = [];%data categories
for i = 1:n
%refrmat table info to compatible array
m = height(FS.('LFP Band Power - L/CH2'){i}); %length of peaks detected
Y = [Y;FS.('LFP Band Power - L/CH2'){i}]; %list of all values
xtick = repmat(TTimes(i),m,1);%list of value categories
x = [x;xtick];
end
savefig("LeftParams")
Left_LFP = Y;
%plot the boxchart
figure
b = tiledlayout(1,1)
ax1 = axes(b);
boxchart(x,log(Y),"Orientation","vertical","Notch","on","MarkerSize",2,"BoxFaceColor",'b') %%%%LOG REMOVED
ax1.YAxisLocation ='right';
%%STIMULATION
%stimx = [S.("Date Time (HH:mm:ss)"){:}];
stimx = S.("Date");
stimy = [];
x=[];
for i = 1:length(S.("Stim Amp - L/CH2 (mA)"))
m=height(S.("Stim Amp - L/CH2 (mA)"){i});
stimy = [stimy;(S.("Stim Amp - L/CH2 (mA)"){i})];
xtick = repmat(stimx(i),m,1);%list of value categories
x = [x;xtick];
end
stim = table(x,stimy);
hold on
%plot stim with axes settings
ax2 = axes(b);
stairs(stim.("x"),stim.("stimy"),'r','LineWidth',.7,'LineStyle','--')
ax2.XAxisLocation = 'top';
ax2.YAxisLocation = 'left';
ax2.Color = 'none';
ax1.Box = 'off';
ax2.Box = 'off';
ax2.YColor = 'r';
ax1.YColor = 'b';
ax1.YLabel.String = 'LFP Band Power';
ax2.YLabel.String = 'Stimulation (mA)';
enableDefaultInteractivity(ax1)
enableDefaultInteractivity(ax2)
title("Left: BrainSense Timeline")
if logical
savefig("LeftStimIQR-Raw")
else
savefig("LeftStimIQR-MedicalLP")
end
%% Left and Right Hemisphere Comparison
figure
hold on
Hemisphere_Names = [repmat(1,1,length(Left_FS)),repmat(2,1,length(Right_FS))];
Hemisphere_Values = [Left_FS;Right_FS];
Order = {'Left','Right'};
Hemisphere_Names = categorical(Hemisphere_Names,[1, 2], Order);
boxchart(Hemisphere_Names,log(Hemisphere_Values),'GroupByColor', Hemisphere_Names,"Notch","on")
ylabel("LFP BP")
legend
str = "Left and Right LFP FS";
title(str)
hold off
savefig('FSBoxChartSummary-LOG')
%LFP Band Power
figure
hold on
Hemisphere_Names = [repmat(1,1,length(Left_LFP)),repmat(2,1,length(Right_LFP))];
Hemisphere_Values = [Left_LFP;Right_LFP];
Order = {'Left','Right'};
Hemisphere_Names = categorical(Hemisphere_Names,[1, 2], Order);
boxchart(Hemisphere_Names,log(Hemisphere_Values),'GroupByColor', Hemisphere_Names,"Notch","on")
ylabel("LFP BP")
legend
str = "Left and Right LFP BP";
title(str)
hold off
savefig('LFPBPBoxChartSummary-LOG')
%
end