-
Notifications
You must be signed in to change notification settings - Fork 0
/
paper_plots.jl
553 lines (449 loc) · 23.6 KB
/
paper_plots.jl
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
print("Zeroing results!!\n");
include("multi_critic_detailed_recording.jl");
using PyPlot
using PyCall
using LaTeXStrings;
@pyimport seaborn as sns
#sns.set(font_scale=1.5)
sns.set_context("poster")
#exp_results = [];
function plot_figure_1_1(results_id=1::Int)
# uses:
# compare_three_trial_types_with_multiple_subjects()
# paper_binary_inputs_parameters_critic_simulations.jl
# shows:
# learning occurs on hard task when it is performed alone
plotting_separate_choices_on = false;
latest_experiment_results = exp_results[results_id];
figure(figsize=(10,12))
block_id = linspace(1,no_blocks_in_experiment, no_blocks_in_experiment);
## Task 2 subplot
xlim((0-0.1,no_blocks_in_experiment+0.1))
ylim((0-0.02,1+0.02))
xlabel("Block number")
ylabel("Proportion correct")
if(plotting_scatter_plot_on)
for i = 1:no_blocks_in_experiment
for j = 1:no_subjects
scatter(i+0., latest_experiment_results.subjects_task[j,2].blocks[i].proportion_correct, marker="o", edgecolors="face", c="g", alpha=0.5)
if(plotting_separate_choices_on)
# adding plotting of sub-task related results
scatter(i+0., latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[1], marker="o", c="c")
scatter(i+0., latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[2], marker="o", c="m")
end
end
end
end
if(plotting_error_bars_on)
errorbar(block_id+0., latest_experiment_results.task_correct[:,2], latest_experiment_results.task_range[:,2], ecolor="g", color="g", linewidth=2)
errorbar(block_id+0., latest_experiment_results.task_correct[:,2], latest_experiment_results.task_error[:,2], ecolor="k", color="g", linewidth=2)
end
if(plotting_individual_subjects_on)
for j = 1:no_subjects
local_prop_2_correct = zeros(no_blocks_in_experiment);
# adding plotting of sub-task related results
local_prop_sub_1_correct = zeros(no_blocks_in_experiment);
local_prop_sub_2_correct = zeros(no_blocks_in_experiment);
for i = 1:no_blocks_in_experiment
local_prop_2_correct[i] = latest_experiment_results.subjects_task[j,2].blocks[i].proportion_correct;
local_prop_sub_1_correct[i] = latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[1];
local_prop_sub_2_correct[i] = latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[2];
end
plot(block_id, local_prop_2_correct, "g", alpha=0.1)
if(plotting_separate_choices_on)
# adding plotting of sub-task related results
plot(block_id, local_prop_sub_1_correct, "c")
plot(block_id, local_prop_sub_2_correct, "m")
end
end
end
plot(block_id+0., latest_experiment_results.task_correct[:,2], "g", linewidth=2, label="Subjects learning difficult task")
legend(loc=4)
#savefig("figure_1_1.pdf", transparent="True", bbox_inches="tight", pad_inches=0.1)
savefig("figure_1_1.pdf", bbox_inches="tight", pad_inches=0.1)
end
function plot_figure_1_2(results_id=1::Int)
# uses:
# compare_three_trial_types_with_multiple_subjects()
# paper_binary_inputs_parameters_critic_simulations.jl
# shows:
#
plotting_separate_choices_on = false;
latest_experiment_results = exp_results[results_id];
figure(figsize=(10,12))
block_id = linspace(1,no_blocks_in_experiment, no_blocks_in_experiment);
xlim((0-0.1,no_blocks_in_experiment+0.1))
ylim((0-0.02,1+0.02))
xlabel("Block number")
ylabel("Proportion correct")
if(plotting_scatter_plot_on)
for i = 1:no_blocks_in_experiment
for j = 1:no_subjects
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_correct, marker="o", edgecolors="face", c="b", alpha=0.7)
if(plotting_task_by_task_on)
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[1], marker="o", edgecolors="face", c="r", alpha=0.3)
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[2], marker="o", edgecolors="face", c="g", alpha=0.3)
end
end
end
end
if(plotting_error_bars_on)
errorbar(block_id-0., latest_experiment_results.roving_correct[:,1], latest_experiment_results.roving_range[:,1], ecolor="b", color="b", linewidth=2)
errorbar(block_id-0., latest_experiment_results.roving_correct[:,1], latest_experiment_results.roving_error[:,1], ecolor="k", color="b", linewidth=2)
end
if(plotting_individual_subjects_on)
for j = 1:no_subjects
local_prop_roving_correct = zeros(no_blocks_in_experiment);
local_prop_roving_task_1_correct = zeros(no_blocks_in_experiment);
local_prop_roving_task_2_correct = zeros(no_blocks_in_experiment);
for i = 1:no_blocks_in_experiment
local_prop_roving_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_correct;
local_prop_roving_task_1_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[1];
local_prop_roving_task_2_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[2];
end
if(plotting_task_by_task_on)
plot(block_id-0., local_prop_roving_task_1_correct, "r", alpha=0.1)
plot(block_id-0., local_prop_roving_task_2_correct, "g", alpha=0.1)
end
plot(block_id-0., local_prop_roving_correct, "b", alpha=0.1)
end
end
plot(block_id-0., latest_experiment_results.roving_correct[:,1], "b", linewidth=3, label="Block mean performance average")
plot(block_id-0., latest_experiment_results.roving_task_correct[:,1,1], "r", linewidth=3, label="Block mean performance on Bisection Task 1")
plot(block_id-0., latest_experiment_results.roving_task_correct[:,2,1], "g", linewidth=3, label="Block mean performance on Bisection Task 2")
legend(loc=4)
#savefig("figure_1_2.pdf", transparent="True", bbox_inches="tight", pad_inches=0.1)
savefig("figure_1_2.pdf", bbox_inches="tight", pad_inches=0.1)
end
function plot_figure_2_1(results_id=1::Int)
# uses:
# compare_three_trial_types_with_multiple_subjects()
# paper_binary_inputs_parameters_critic_simulations.jl
# shows:
#
plotting_separate_choices_on = false;
latest_experiment_results = exp_results[results_id];
figure(figsize=(10,12))
block_id = linspace(1,no_blocks_in_experiment, no_blocks_in_experiment);
## Task 2 subplot
xlim((0-0.1,no_blocks_in_experiment+0.1))
ylim((0-0.02,1+0.02))
xlabel("Block number")
ylabel("Proportion correct")
if(plotting_scatter_plot_on)
for i = 1:no_blocks_in_experiment
for j = 1:no_subjects
scatter(i+0., latest_experiment_results.subjects_task[j,2].blocks[i].proportion_correct, marker="o", edgecolors="face", c="g", alpha=0.5)
if(plotting_separate_choices_on)
# adding plotting of sub-task related results
scatter(i+0., latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[1], marker="o", c="c")
scatter(i+0., latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[2], marker="o", c="m")
end
end
end
end
if(plotting_error_bars_on)
errorbar(block_id+0., latest_experiment_results.task_correct[:,2], latest_experiment_results.task_range[:,2], ecolor="g", color="g", linewidth=2)
errorbar(block_id+0., latest_experiment_results.task_correct[:,2], latest_experiment_results.task_error[:,2], ecolor="k", color="g", linewidth=2)
end
if(plotting_individual_subjects_on)
for j = 1:no_subjects
local_prop_2_correct = zeros(no_blocks_in_experiment);
# adding plotting of sub-task related results
local_prop_sub_1_correct = zeros(no_blocks_in_experiment);
local_prop_sub_2_correct = zeros(no_blocks_in_experiment);
for i = 1:no_blocks_in_experiment
local_prop_2_correct[i] = latest_experiment_results.subjects_task[j,2].blocks[i].proportion_correct;
local_prop_sub_1_correct[i] = latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[1];
local_prop_sub_2_correct[i] = latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[2];
end
plot(block_id, local_prop_2_correct, "g", alpha=0.1)
if(plotting_separate_choices_on)
# adding plotting of sub-task related results
plot(block_id, local_prop_sub_1_correct, "c")
plot(block_id, local_prop_sub_2_correct, "m")
end
end
end
plot(block_id+0., latest_experiment_results.task_correct[:,2], "g", linewidth=2, label="Subjects expect 50:50")
legend(loc=4)
#savefig("figure_1_1.pdf", transparent="True", bbox_inches="tight", pad_inches=0.1)
savefig("figure_2_1.pdf", bbox_inches="tight", pad_inches=0.1)
end
function plot_figure_2_2(results_id=1::Int)
# uses:
# compare_three_trial_types_with_multiple_subjects()
# paper_binary_inputs_parameters_critic_simulations.jl
# shows:
#
plotting_separate_choices_on = false;
latest_experiment_results = exp_results[results_id];
figure(figsize=(10,12))
block_id = linspace(1,no_blocks_in_experiment, no_blocks_in_experiment);
## Task 2 subplot
xlim((0-0.1,no_blocks_in_experiment+0.1))
ylim((0-0.02,1+0.02))
xlabel("Block number")
ylabel("Proportion correct")
if(plotting_scatter_plot_on)
for i = 1:no_blocks_in_experiment
for j = 1:no_subjects
scatter(i+0., latest_experiment_results.subjects_task[j,2].blocks[i].proportion_correct, marker="o", edgecolors="face", c="g", alpha=0.5)
if(plotting_separate_choices_on)
# adding plotting of sub-task related results
scatter(i+0., latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[1], marker="o", c="c")
scatter(i+0., latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[2], marker="o", c="m")
end
end
end
end
if(plotting_error_bars_on)
errorbar(block_id+0., latest_experiment_results.task_correct[:,2], latest_experiment_results.task_range[:,2], ecolor="g", color="g", linewidth=2)
errorbar(block_id+0., latest_experiment_results.task_correct[:,2], latest_experiment_results.task_error[:,2], ecolor="k", color="g", linewidth=2)
end
if(plotting_individual_subjects_on)
for j = 1:no_subjects
local_prop_2_correct = zeros(no_blocks_in_experiment);
# adding plotting of sub-task related results
local_prop_sub_1_correct = zeros(no_blocks_in_experiment);
local_prop_sub_2_correct = zeros(no_blocks_in_experiment);
for i = 1:no_blocks_in_experiment
local_prop_2_correct[i] = latest_experiment_results.subjects_task[j,2].blocks[i].proportion_correct;
local_prop_sub_1_correct[i] = latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[1];
local_prop_sub_2_correct[i] = latest_experiment_results.subjects_task[j,2].blocks[i].proportion_task_correct[2];
end
plot(block_id, local_prop_2_correct, "g", alpha=0.1)
if(plotting_separate_choices_on)
# adding plotting of sub-task related results
plot(block_id, local_prop_sub_1_correct, "c")
plot(block_id, local_prop_sub_2_correct, "m")
end
end
end
plot(block_id+0., latest_experiment_results.task_correct[:,2], "g", linewidth=2, label="Subjects expect 75:25")
legend(loc=4)
#savefig("figure_1_1.pdf", transparent="True", bbox_inches="tight", pad_inches=0.1)
savefig("figure_2_2.pdf", bbox_inches="tight", pad_inches=0.1)
end
function plot_figure_3_1(results_id=1::Int)
# uses:
# biased_compare_three_trial_types_with_multiple_subjects()
# paper_binary_inputs_parameters_critic_simulations.jl
# shows:
#
plotting_separate_choices_on = false;
latest_experiment_results = exp_results[results_id];
figure(figsize=(10,12))
block_id = linspace(1,no_blocks_in_experiment, no_blocks_in_experiment);
## Task 2 subplot
xlim((0-0.1,no_blocks_in_experiment+0.1))
ylim((0-0.02,1+0.02))
xlabel("Block number")
ylabel("Proportion correct")
if(plotting_scatter_plot_on)
for i = 1:no_blocks_in_experiment
for j = 1:no_subjects
scatter(i+0., latest_experiment_results.subjects_roving_task[j,2].blocks[i].proportion_correct, marker="o", edgecolors="face", c="g", alpha=0.5)
if(plotting_separate_choices_on)
# adding plotting of sub-task related results
scatter(i+0., latest_experiment_results.subjects_roving_task[j,2].blocks[i].proportion_task_correct[1], marker="o", c="c")
scatter(i+0., latest_experiment_results.subjects_roving_task[j,2].blocks[i].proportion_task_correct[2], marker="o", c="m")
end
end
end
end
if(plotting_error_bars_on)
errorbar(block_id+0., latest_experiment_results.roving_correct[:,2], latest_experiment_results.task_range[:,2], ecolor="g", color="g", linewidth=2)
errorbar(block_id+0., latest_experiment_results.roving_correct[:,2], latest_experiment_results.task_error[:,2], ecolor="k", color="g", linewidth=2)
end
if(plotting_individual_subjects_on)
for j = 1:no_subjects
local_prop_roving_correct = zeros(no_blocks_in_experiment);
local_prop_roving_task_1_correct = zeros(no_blocks_in_experiment);
local_prop_roving_task_2_correct = zeros(no_blocks_in_experiment);
for i = 1:no_blocks_in_experiment
local_prop_roving_correct[i] = latest_experiment_results.subjects_roving_task[j,2].blocks[i].proportion_correct;
local_prop_roving_task_1_correct[i] = latest_experiment_results.subjects_roving_task[j,2].blocks[i].proportion_task_correct[1];
local_prop_roving_task_2_correct[i] = latest_experiment_results.subjects_roving_task[j,2].blocks[i].proportion_task_correct[2];
end
if(plotting_separate_choices_on)#(plotting_task_by_task_on)
plot(block_id-0., local_prop_roving_task_1_correct, "c", alpha=0.1)
plot(block_id-0., local_prop_roving_task_2_correct, "m", alpha=0.1)
end
#delete here for simple mean plot
plot(block_id-0., local_prop_roving_correct, "g", alpha=0.1)
end
end
plot(block_id-0., latest_experiment_results.roving_correct[:,2], "g", linewidth=3, label="Manually biased critic")
legend(loc=4)
#savefig("figure_1_1.pdf", transparent="True", bbox_inches="tight", pad_inches=0.1)
savefig("figure_3_1.pdf", bbox_inches="tight", pad_inches=0.1)
end
function plot_figure_3_2(results_id=1::Int)
# uses:
# compare_three_trial_types_with_multiple_subjects()
# paper_binary_inputs_parameters_critic_simulations.jl
# shows:
#
plotting_separate_choices_on = false;
latest_experiment_results = exp_results[results_id];
figure(figsize=(10,12))
block_id = linspace(1,no_blocks_in_experiment, no_blocks_in_experiment);
xlim((0-0.1,no_blocks_in_experiment+0.1))
ylim((0-0.02,1+0.02))
xlabel("Block number")
ylabel("Proportion correct")
if(plotting_scatter_plot_on)
for i = 1:no_blocks_in_experiment
for j = 1:no_subjects
#scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_correct, marker="o", edgecolors="face", c="b", alpha=0.7)
if(plotting_task_by_task_on)
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[1], marker="o", edgecolors="face", c="r", alpha=0.3)
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[2], marker="o", edgecolors="face", c="g", alpha=0.3)
end
end
end
end
if(plotting_error_bars_on)
errorbar(block_id-0., latest_experiment_results.roving_correct[:,1], latest_experiment_results.roving_range[:,1], ecolor="b", color="b", linewidth=2)
errorbar(block_id-0., latest_experiment_results.roving_correct[:,1], latest_experiment_results.roving_error[:,1], ecolor="k", color="b", linewidth=2)
end
if(plotting_individual_subjects_on)
for j = 1:no_subjects
local_prop_roving_correct = zeros(no_blocks_in_experiment);
local_prop_roving_task_1_correct = zeros(no_blocks_in_experiment);
local_prop_roving_task_2_correct = zeros(no_blocks_in_experiment);
for i = 1:no_blocks_in_experiment
local_prop_roving_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_correct;
local_prop_roving_task_1_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[1];
local_prop_roving_task_2_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[2];
end
if(plotting_task_by_task_on)
plot(block_id-0., local_prop_roving_task_1_correct, "r", alpha=0.1)
plot(block_id-0., local_prop_roving_task_2_correct, "g", alpha=0.1)
end
#plot(block_id-0., local_prop_roving_correct, "b", alpha=0.1)
end
end
#plot(block_id-0., latest_experiment_results.roving_correct[:,1], "b", linewidth=3, label="Block mean performance average")
plot(block_id-0., latest_experiment_results.roving_task_correct[:,1,1], "r", linewidth=3, label="Block mean performance on Bisection Task 1")
plot(block_id-0., latest_experiment_results.roving_task_correct[:,2,1], "g", linewidth=3, label="Block mean performance on Bisection Task 2")
legend(loc=4)
#savefig("figure_1_2.pdf", transparent="True", bbox_inches="tight", pad_inches=0.1)
savefig("figure_3_2.pdf", bbox_inches="tight", pad_inches=0.1)
end
function plot_figure_3_3(results_id=1::Int)
# uses:
# compare_three_trial_types_with_multiple_subjects()
# paper_binary_inputs_parameters_critic_simulations.jl
# shows:
#
plotting_separate_choices_on = false;
latest_experiment_results = exp_results[results_id];
figure(figsize=(10,12))
block_id = linspace(1,no_blocks_in_experiment, no_blocks_in_experiment);
xlim((0-0.1,no_blocks_in_experiment+0.1))
ylim((0-0.02,1+0.02))
xlabel("Block number")
ylabel("Proportion correct")
if(plotting_scatter_plot_on)
for i = 1:no_blocks_in_experiment
for j = 1:no_subjects
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_correct, marker="o", edgecolors="face", c="b", alpha=0.7)
if(plotting_task_by_task_on)
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[1], marker="o", edgecolors="face", c="r", alpha=0.3)
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[2], marker="o", edgecolors="face", c="g", alpha=0.3)
end
end
end
end
if(plotting_error_bars_on)
errorbar(block_id-0., latest_experiment_results.roving_correct[:,1], latest_experiment_results.roving_range[:,1], ecolor="b", color="b", linewidth=2)
errorbar(block_id-0., latest_experiment_results.roving_correct[:,1], latest_experiment_results.roving_error[:,1], ecolor="k", color="b", linewidth=2)
end
if(plotting_individual_subjects_on)
for j = 1:no_subjects
local_prop_roving_correct = zeros(no_blocks_in_experiment);
local_prop_roving_task_1_correct = zeros(no_blocks_in_experiment);
local_prop_roving_task_2_correct = zeros(no_blocks_in_experiment);
for i = 1:no_blocks_in_experiment
local_prop_roving_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_correct;
local_prop_roving_task_1_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[1];
local_prop_roving_task_2_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[2];
end
if(plotting_task_by_task_on)
plot(block_id-0., local_prop_roving_task_1_correct, "r", alpha=0.1)
plot(block_id-0., local_prop_roving_task_2_correct, "g", alpha=0.1)
end
plot(block_id-0., local_prop_roving_correct, "b", alpha=0.1)
end
end
plot(block_id-0., latest_experiment_results.roving_correct[:,1], "b", linewidth=3, label="Block mean performance average")
plot(block_id-0., latest_experiment_results.roving_task_correct[:,1,1], "r", linewidth=3, label="Block mean performance on Bisection Task 1")
plot(block_id-0., latest_experiment_results.roving_task_correct[:,2,1], "g", linewidth=3, label="Block mean performance on Bisection Task 2")
legend(loc=4)
#savefig("figure_1_2.pdf", transparent="True", bbox_inches="tight", pad_inches=0.1)
savefig("figure_3_3.pdf", bbox_inches="tight", pad_inches=0.1)
end
function plot_figure_3_4(results_id=1::Int)
# uses:
# compare_three_trial_types_with_multiple_subjects()
# paper_binary_inputs_parameters_critic_simulations.jl
# shows:
#
plotting_separate_choices_on = false;
latest_experiment_results = exp_results[results_id];
figure(figsize=(10,12))
block_id = linspace(1,no_blocks_in_experiment, no_blocks_in_experiment);
xlim((0-0.1,no_blocks_in_experiment+0.1))
ylim((0-0.02,1+0.02))
xlabel("Block number")
ylabel("Proportion correct")
if(plotting_scatter_plot_on)
for i = 1:no_blocks_in_experiment
for j = 1:no_subjects
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_correct, marker="o", edgecolors="face", c="b", alpha=0.7)
if(plotting_task_by_task_on)
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[1], marker="o", edgecolors="face", c="r", alpha=0.3)
scatter(i-0., latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[2], marker="o", edgecolors="face", c="g", alpha=0.3)
end
end
end
end
if(plotting_error_bars_on)
errorbar(block_id-0., latest_experiment_results.roving_correct[:,1], latest_experiment_results.roving_range[:,1], ecolor="b", color="b", linewidth=2)
errorbar(block_id-0., latest_experiment_results.roving_correct[:,1], latest_experiment_results.roving_error[:,1], ecolor="k", color="b", linewidth=2)
end
if(plotting_individual_subjects_on)
for j = 1:no_subjects
local_prop_roving_correct = zeros(no_blocks_in_experiment);
local_prop_roving_task_1_correct = zeros(no_blocks_in_experiment);
local_prop_roving_task_2_correct = zeros(no_blocks_in_experiment);
for i = 1:no_blocks_in_experiment
local_prop_roving_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_correct;
local_prop_roving_task_1_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[1];
local_prop_roving_task_2_correct[i] = latest_experiment_results.subjects_roving_task[j,1].blocks[i].proportion_task_correct[2];
end
if(plotting_task_by_task_on)
plot(block_id-0., local_prop_roving_task_1_correct, "r", alpha=0.1)
plot(block_id-0., local_prop_roving_task_2_correct, "g", alpha=0.1)
end
plot(block_id-0., local_prop_roving_correct, "b", alpha=0.1)
end
end
plot(block_id-0., latest_experiment_results.roving_correct[:,1], "b", linewidth=3, label="Block mean performance on Roved tasks")
plot(block_id-0., latest_experiment_results.roving_task_correct[:,1,1], "r", linewidth=3, label="Block mean performance on Bisection Task 1")
plot(block_id-0., latest_experiment_results.roving_task_correct[:,2,1], "g", linewidth=3, label="Block mean performance on Bisection Task 2")
legend(loc=4)
#savefig("figure_1_2.pdf", transparent="True", bbox_inches="tight", pad_inches=0.1)
savefig("figure_3_4.pdf", bbox_inches="tight", pad_inches=0.1)
end
function paper_plots_init()
print("Running comparison simulation\n")
compare_three_trial_types_with_multiple_subjects();
end
function paper_biased_plots_init()
print("Running bias comparison simulation\n")
biased_compare_three_trial_types_with_multiple_subjects();
end
#__init__ = paper_plots_init()