-
Notifications
You must be signed in to change notification settings - Fork 16
/
.Rhistory
512 lines (512 loc) · 21.1 KB
/
.Rhistory
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
FA2 <- FA2 / sum(FA2)
cum_H2 <- c(0, cumsum(H2))
cum_FA2 <- c(0, cumsum(FA2))
i <- 1
k <- numeric(Nratings)
for (c in 1:Nratings) {
k[i] <- (cum_H2[c + 1] - cum_FA2[c])^2 - (cum_H2[c] - cum_FA2[c + 1])^2
i <- i + 1
}
auroc2 <- 0.5 + 0.25 * sum(k)
# AUROC is stored in 'auroc2'
print(auroc2)
}
df$ResponseCorrect
df = df %>% drop_na()
correct = df$ResponseCorrect
conf = df$Confidence
Nratings = 4
i <- Nratings + 1
H2 <- numeric(Nratings)
FA2 <- numeric(Nratings)
for (c in 1:Nratings) {
H2[i-1] <- sum(conf == c & correct) + 0.5
FA2[i-1] <- sum(conf == c & !correct) + 0.5
i <- i - 1
}
H2 <- H2 / sum(H2)
FA2 <- FA2 / sum(FA2)
cum_H2 <- c(0, cumsum(H2))
cum_FA2 <- c(0, cumsum(FA2))
i <- 1
k <- numeric(Nratings)
for (c in 1:Nratings) {
k[i] <- (cum_H2[c + 1] - cum_FA2[c])^2 - (cum_H2[c] - cum_FA2[c + 1])^2
i <- i + 1
}
auroc2 <- 0.5 + 0.25 * sum(k)
# AUROC is stored in 'auroc2'
print(auroc2)
i
H2
H2 <- numeric(Nratings)
conf == c & correct
conf == c & !correct
c = 1
conf == c & !correct
conf == c & correct
conf = df$Confidence_bin
Nratings = 4
i <- Nratings + 1
H2 <- numeric(Nratings)
FA2 <- numeric(Nratings)
for (c in 1:Nratings) {
H2[i-1] <- sum(conf == c & correct) + 0.5
FA2[i-1] <- sum(conf == c & !correct) + 0.5
i <- i - 1
}
H2
FA2
df$Confidence_bin
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
modality == "Extero"
modality = "Extero"
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
correct = df$ResponseCorrect
conf = df$Confidence_bin
Nratings = 4
i <- Nratings + 1
H2 <- numeric(Nratings)
FA2 <- numeric(Nratings)
for (c in 1:Nratings) {
H2[i-1] <- sum(conf == c & correct) + 0.5
FA2[i-1] <- sum(conf == c & !correct) + 0.5
i <- i - 1
}
H2
FA2
H2 <- H2 / sum(H2)
FA2 <- FA2 / sum(FA2)
cum_H2 <- c(0, cumsum(H2))
cum_FA2 <- c(0, cumsum(FA2))
i <- 1
k <- numeric(Nratings)
for (c in 1:Nratings) {
k[i] <- (cum_H2[c + 1] - cum_FA2[c])^2 - (cum_H2[c] - cum_FA2[c + 1])^2
i <- i + 1
}
auroc2 <- 0.5 + 0.25 * sum(k)
# AUROC is stored in 'auroc2'
print(auroc2)
df
# AUROC is stored in 'auroc2'
print(auroc2)
m1 = glm(ResponseCorrect ~ Confidence_bin, data = df %>% filter(Modality == modality), family = binomial(link = "logit"))
roc_con = pROC::roc(df %>% filter(Modality == modality) %>% .$ResponseCorrect,m1$fitted)
auc = pROC::auc(roc_con)
# AUROC is stored in 'auroc2'
print(auroc2)
auc
pacman::p_load(tidyverse,ggdist,psycho,caret,patchwork, gt, cowplot, grid,reticulate,cmdstanr,posterior,rstan,bayesplot,here,rmarkdown)
np <- import("numpy")
#Here we read the same file as in the python notebook:
psychophysics_df = read_csv('https://github.com/embodied-computation-group/CardioceptionPaper/raw/main/data/Del2_merged.txt')
df = psychophysics_df %>% filter(Subject == "sub_0019")
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
df = psychophysics_df %>% filter(Subject == "sub_0019")
df$ResponseCorrect <- ifelse(df$ResponseCorrect == "", NA, df$ResponseCorrect)
df$Decision <- ifelse(df$Decision == "", NA, df$Decision)
df <- df %>%
mutate(
Decision = as.character(df$Decision),
ConfidenceRT = as.numeric(df$ConfidenceRT),
DecisionRT = as.numeric(df$DecisionRT),
Confidence = as.numeric(df$Confidence),
Condition = as.character(df$Condition),
listenBPM = as.numeric(df$listenBPM),
responseBPM = as.numeric(df$responseBPM),
ResponseCorrect = as.numeric(as.factor(df$ResponseCorrect)) - 1,
EstimatedThreshold = as.numeric(df$EstimatedThreshold),
EstimatedSlope = as.numeric(df$EstimatedSlope),
)
# check for NA's in the critical columns of the data:
# specify different ways of coding missing values:
missing_pres <- c(NA, "na", "N/A", "NaN", NaN, "n/a")
trials_missing <- df %>%
select(Decision, Confidence, ConfidenceRT, Confidence, Condition, listenBPM, responseBPM, nTrials) %>%
filter_all(any_vars(. %in% missing_pres)) %>%
.$nTrials
if (length(trials_missing) != 0) {
print(paste("Number of NA's = ", length(trials_missing), " detected in trials : "))
print(as.character(trials_missing))
}
# remove the NA's
df1 <- df %>% filter(!nTrials %in% trials_missing)
modality = "Intero"
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
df = df1
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
model = get_data(df,modality, bins)
get_data = function(df, modality,bins){
if(bins == T){
m1 = glm(ResponseCorrect ~ Confidence_bin, data = df %>% filter(Modality == modality), family = binomial(link = "logit"))
}else{
m1 = glm(ResponseCorrect ~ Confidence, data = df %>% filter(Modality == modality), family = binomial(link = "logit"))
}
roc_con = pROC::roc(df %>% filter(Modality == modality) %>% .$ResponseCorrect,m1$fitted)
auc = pROC::auc(roc_con)
return(pROC::ggroc(roc_con)$data %>% mutate(Modality = modality, AUC = auc[[1]]))
}
model = get_data(df,modality, bins)
bins = T
model = get_data(df,modality, bins)
model
flemse(df$ResponseCorrect, df$Confidence_bin, 4)
model
0.8738095-0.8347739
df = df1
modality = "Extero"
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
model = get_data(df,modality, bins)
model
0.8738095-0.8347739
flemse(df$ResponseCorrect, df$Confidence_bin, 4)
0.7892157-0.7382075
unique(psychophysics_df$Subject)
pacman::p_load(tidyverse,ggdist,psycho,caret,patchwork, gt, cowplot, grid,reticulate,cmdstanr,posterior,rstan,bayesplot,here,rmarkdown)
np <- import("numpy")
pacman::p_load(tidyverse,ggdist,psycho,caret,patchwork, gt, cowplot, grid,reticulate,cmdstanr,posterior,rstan,bayesplot,here,rmarkdown)
np <- import("numpy")
#Here we read the same file as in the python notebook:
psychophysics_df = read_csv('https://github.com/embodied-computation-group/CardioceptionPaper/raw/main/data/Del2_merged.txt')
df = psychophysics_df %>% filter(Subject == "sub_0175")
df$ResponseCorrect <- ifelse(df$ResponseCorrect == "", NA, df$ResponseCorrect)
df$Decision <- ifelse(df$Decision == "", NA, df$Decision)
df <- df %>%
mutate(
Decision = as.character(df$Decision),
ConfidenceRT = as.numeric(df$ConfidenceRT),
DecisionRT = as.numeric(df$DecisionRT),
Confidence = as.numeric(df$Confidence),
Condition = as.character(df$Condition),
listenBPM = as.numeric(df$listenBPM),
responseBPM = as.numeric(df$responseBPM),
ResponseCorrect = as.numeric(as.factor(df$ResponseCorrect)) - 1,
EstimatedThreshold = as.numeric(df$EstimatedThreshold),
EstimatedSlope = as.numeric(df$EstimatedSlope),
)
# check for NA's in the critical columns of the data:
# specify different ways of coding missing values:
missing_pres <- c(NA, "na", "N/A", "NaN", NaN, "n/a")
trials_missing <- df %>%
select(Decision, Confidence, ConfidenceRT, Confidence, Condition, listenBPM, responseBPM, nTrials) %>%
filter_all(any_vars(. %in% missing_pres)) %>%
.$nTrials
if (length(trials_missing) != 0) {
print(paste("Number of NA's = ", length(trials_missing), " detected in trials : "))
print(as.character(trials_missing))
}
# remove the NA's
df1 <- df %>% filter(!nTrials %in% trials_missing)
modality = "Extero"
get_data = function(df, modality,bins){
if(bins == T){
m1 = glm(ResponseCorrect ~ Confidence_bin, data = df %>% filter(Modality == modality), family = binomial(link = "logit"))
}else{
m1 = glm(ResponseCorrect ~ Confidence, data = df %>% filter(Modality == modality), family = binomial(link = "logit"))
}
roc_con = pROC::roc(df %>% filter(Modality == modality) %>% .$ResponseCorrect,m1$fitted)
auc = pROC::auc(roc_con)
return(pROC::ggroc(roc_con)$data %>% mutate(Modality = modality, AUC = auc[[1]]))
}
df = df1
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
model = get_data(df,modality, bins)
bins = T
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
model = get_data(df,modality, bins)
model
flemse(correct = df$ResponseCorrect, conf = df$Confidence_bin, Nratings = 4)
0.8104575-0.7658662
modality
flemse(correct = df$ResponseCorrect, conf = df$Confidence, Nratings = unique(df$Confidence))
df = df1
modality = "Intero"
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
model = get_data(df,modality, bins)
flemse(correct = df$ResponseCorrect, conf = df$Confidence, Nratings = 4)
model
correct = df$ResponseCorrect
flemse(correct = df$ResponseCorrect, conf = df$Confidence_bin, Nratings = 4)
conf = df$Confidence_bin
Nratings = 4
correct = df$ResponseCorrect
i <- Nratings + 1
H2 <- numeric(Nratings)
FA2 <- numeric(Nratings)
H2
flemse(correct = df$ResponseCorrect, conf = df$Confidence_bin, Nratings = 4)
print(model$AUC[1])
flemse(correct = df$ResponseCorrect, conf = df$Confidence_bin, Nratings = 4)
pacman::p_load(tidyverse,ggdist,psycho,caret,patchwork, gt, cowplot, grid,reticulate,cmdstanr,posterior,rstan,bayesplot,here,rmarkdown)
np <- import("numpy")
#Here we read the same file as in the python notebook:
psychophysics_df = read_csv('https://github.com/embodied-computation-group/CardioceptionPaper/raw/main/data/Del2_merged.txt')
df = psychophysics_df %>% filter(Subject == "sub_0202")
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
results = single_sub_analysis(df, #The raw dataframe
interoPost = interoPost, #numpy array for the intero (NA if not avaliable)
exteroPost = exteroPost, #numpy array for the extero (NA if not avaliable)
bayesian = F, #Bayesian Analysis (TRUE/FALSE)
model = NA, #Bayesian model here a stan script (NA if Bayesian is FALSE)
out = here::here("docs","source","examples","R")) #Output directory for results
#This line reads in a subject result file:
df = read_csv("https://raw.githubusercontent.com/embodied-computation-group/Cardioception/master/docs/source/examples/templates/data/HRD/HRD_final.txt")
#These next lines read in the psi posterior distributions for each modality.
#These will be saved with names depending on your conditions, so modify as needed.
interoPost = np$load(here("docs","source","examples","templates","data","HRD","Intero_posterior.npy"))
exteroPost = np$load(here("docs","source","examples","templates","data","HRD","Extero_posterior.npy"))
results = single_sub_analysis(df, #The raw dataframe
interoPost = interoPost, #numpy array for the intero (NA if not avaliable)
exteroPost = exteroPost, #numpy array for the extero (NA if not avaliable)
bayesian = F, #Bayesian Analysis (TRUE/FALSE)
model = NA, #Bayesian model here a stan script (NA if Bayesian is FALSE)
out = here::here("docs","source","examples","R")) #Output directory for results
pacman::p_load(tidyverse,ggdist,psycho,caret,patchwork, gt, cowplot, grid,reticulate, here,rmarkdown)
np <- import("numpy")
#This line reads in a subject result file:
df = read_csv("https://raw.githubusercontent.com/embodied-computation-group/Cardioception/master/docs/source/examples/templates/data/HRD/HRD_final.txt")
#These next lines read in the psi posterior distributions for each modality.
#These will be saved with names depending on your conditions, so modify as needed.
interoPost = np$load(here("docs","source","examples","templates","data","HRD","Intero_posterior.npy"))
exteroPost = np$load(here("docs","source","examples","templates","data","HRD","Extero_posterior.npy"))
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
results = single_sub_analysis(df, #The raw dataframe
interoPost = interoPost, #numpy array for the intero (NA if not avaliable)
exteroPost = exteroPost, #numpy array for the extero (NA if not avaliable)
bayesian = F, #Bayesian Analysis (TRUE/FALSE)
model = NA, #Bayesian model here a stan script (NA if Bayesian is FALSE)
out = here::here("docs","source","examples","R")) #Output directory for results
pacman::p_load(tidyverse,ggdist,psycho,caret,patchwork, gt, cowplot, grid,reticulate,cmdstanr,posterior,rstan,bayesplot,here,rmarkdown)
np <- import("numpy")
#Here we read the same file as in the python notebook:
psychophysics_df = read_csv('https://github.com/embodied-computation-group/CardioceptionPaper/raw/main/data/Del2_merged.txt')
df = psychophysics_df %>% filter(Subject == "sub_0202")
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
unique(psychophysics_df$Subject)
df = psychophysics_df %>% filter(Subject == "sub_0172")
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
results
df = psychophysics_df %>% filter(Subject == "sub_0067")
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
model = cmdstan_model(here("docs","source","examples","R","src","first_model.stan"))
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
results$AUC_plot
df = psychophysics_df %>% filter(Subject == "sub_0098")
model = cmdstan_model(here("docs","source","examples","R","src","first_model.stan"))
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
df = psychophysics_df %>% filter(Subject == "sub_0044")
model = cmdstan_model(here("docs","source","examples","R","src","first_model.stan"))
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
df = psychophysics_df %>% filter(Subject == "sub_0042")
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
results$AUC_plot
results$histogram_plot
results$conf_plot
df$ResponseCorrect <- ifelse(df$ResponseCorrect == "", NA, df$ResponseCorrect)
df$Decision <- ifelse(df$Decision == "", NA, df$Decision)
df <- df %>%
mutate(
Decision = as.character(df$Decision),
ConfidenceRT = as.numeric(df$ConfidenceRT),
DecisionRT = as.numeric(df$DecisionRT),
Confidence = as.numeric(df$Confidence),
Condition = as.character(df$Condition),
listenBPM = as.numeric(df$listenBPM),
responseBPM = as.numeric(df$responseBPM),
ResponseCorrect = as.numeric(as.factor(df$ResponseCorrect)) - 1,
EstimatedThreshold = as.numeric(df$EstimatedThreshold),
EstimatedSlope = as.numeric(df$EstimatedSlope),
)
# check for NA's in the critical columns of the data:
# specify different ways of coding missing values:
missing_pres <- c(NA, "na", "N/A", "NaN", NaN, "n/a")
trials_missing <- df %>%
select(Decision, Confidence, ConfidenceRT, Confidence, Condition, listenBPM, responseBPM, nTrials) %>%
filter_all(any_vars(. %in% missing_pres)) %>%
.$nTrials
if (length(trials_missing) != 0) {
print(paste("Number of NA's = ", length(trials_missing), " detected in trials : "))
print(as.character(trials_missing))
}
# remove the NA's
df1 <- df %>% filter(!nTrials %in% trials_missing)
df = df1
modality = "Extero"
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
model = get_data(df,modality, bins)
get_data = function(df, modality,bins){
if(bins == T){
m1 = glm(ResponseCorrect ~ Confidence_bin, data = df %>% filter(Modality == modality), family = binomial(link = "logit"))
}else{
m1 = glm(ResponseCorrect ~ Confidence, data = df %>% filter(Modality == modality), family = binomial(link = "logit"))
}
roc_con = pROC::roc(df %>% filter(Modality == modality) %>% .$ResponseCorrect , m1$fitted)
auc = pROC::auc(roc_con)
return(pROC::ggroc(roc_con)$data %>% mutate(Modality = modality, AUC = auc[[1]]))
}
bins = T
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
model = get_data(df,modality, bins)
print(model$AUC[1])
flemse(correct = df$ResponseCorrect, conf = df$Confidence_bin, Nratings = 4)
df$ResponseCorrect
df$Confidence_bin
df
nrow(df)
df <- df %>%
filter(Modality == modality) %>%
mutate(stimuli = as.numeric(Alpha > 0), Modality = as.factor(Modality), reponse = as.factor(as.numeric((Decision == "More")))) %>%
ungroup()
df$Confidence_bin <- discretebins(df, 4)[[1]]
model = get_data(df,modality, bins)
print(model$AUC[1])
flemse(correct = df$ResponseCorrect, conf = df$Confidence_bin, Nratings = 4)
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
model = cmdstan_model(here("docs","source","examples","R","src","first_model.stan"))
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
pacman::p_load(tidyverse,ggdist,psycho,caret,patchwork, gt, cowplot, grid,reticulate,cmdstanr,posterior,rstan,bayesplot,here,rmarkdown)
np <- import("numpy")
#Here we read the same file as in the python notebook:
psychophysics_df = read_csv('https://github.com/embodied-computation-group/CardioceptionPaper/raw/main/data/Del2_merged.txt')
df = psychophysics_df %>% filter(Subject == "sub_0042")
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
model = cmdstan_model(here("docs","source","examples","R","src","first_model.stan"))
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
#loading the functions to do the analysis:
source(here("docs","source","examples","R","src","firstlevelanalysis.R"))
model = cmdstan_model(here("docs","source","examples","R","src","first_model.stan"))
results = single_sub_analysis(df,
interoPost = NA,
exteroPost = NA,
bayesian = F,
model = model,
out = here::here("docs","source","examples","R"))
results$conf_plot
results$AUC_plot