-
Notifications
You must be signed in to change notification settings - Fork 1
/
.Rhistory
512 lines (512 loc) · 14.4 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
data.frame(
image1 = c(
'Oats',
'Oats',
'Oats',
'Oats',
'Green Beens',
'Green Beens',
'Green Beens',
'Green Beens'
),
image2 = c(
'Cellery',
'Jungle Pellet',
'Peanuts',
'Carrot',
'Cellery',
'Jungle Pellet',
'Peanuts',
'Carrot'
)
)
prob_chip <-
get_probabilities_df(
m2_chip,
newdata = pairs_chip,
model_type = 'bt') #here we are assuming zero for the random effects
prob_macaque <-
get_probabilities_df(
m2_macaque,
newdata = pairs_macaque,
model_type = 'bt')
prob_chip
prob_macaque <-
get_probabilities_df(
m2_macaque,
newdata = pairs_macaque,
model_type = 'bt')
pairs_macaque
pairs_macaque <-
data.frame(
image1 = c(
'Oats',
'Oats',
'Oats',
'Oats',
'Green Beans',
'Green Beans',
'Green Beans',
'Green Beans'
),
image2 = c(
'Celery',
'Jungle Pellet',
'Peanuts',
'Carrot',
'Celery',
'Jungle Pellet',
'Peanuts',
'Carrot'
)
)
prob_macaque <-
get_probabilities_df(
m2_macaque,
newdata = pairs_macaque,
model_type = 'bt')
prob_gor <-
get_probabilities_df(
m2_macaque,
newdata = pairs_gor,
model_type = 'bt')
prob_chip
load_all("../bpcs")
load_all("../bpcs")
m2_gor
# Create a data frame with all the pairs of food that we want to calculate
pairs_gor <-
data.frame(
image1 = c(
'Apple',
'Apple',
'Apple',
'Apple',
'Tomato',
'Tomato',
'Tomato',
'Tomato'
),
image2 = c(
'Cucumber',
'Grape',
'Turnip',
'Carrot',
'Cucumber',
'Grape',
'Turnip',
'Carrot'
)
)
pairs_chip <-
data.frame(
image1 = c(
'Apple',
'Apple',
'Apple',
'Apple',
'Tomato',
'Tomato',
'Tomato',
'Tomato'
),
image2 = c(
'Cucumber',
'Grape',
'Turnip',
'Carrot',
'Cucumber',
'Grape',
'Turnip',
'Carrot'
)
)
pairs_macaque <-
data.frame(
image1 = c(
'Oats',
'Oats',
'Oats',
'Oats',
'Green Beans',
'Green Beans',
'Green Beans',
'Green Beans'
),
image2 = c(
'Celery',
'Jungle Pellet',
'Peanuts',
'Carrot',
'Celery',
'Jungle Pellet',
'Peanuts',
'Carrot'
)
)
prob_chip <-
get_probabilities_df(
m2_chip,
newdata = pairs_chip,
model_type = 'bt') #here we are assuming zero for the random effects
prob_macaque <-
get_probabilities_df(
m2_macaque,
newdata = pairs_macaque,
model_type = 'bt')
prob_gor <-
get_probabilities_df(
m2_gor,
newdata = pairs_gor,
model_type = 'bt')
#merging in a single df
prob_table <- rbind(prob_gor, prob_chip, prob_macaque)
#since this is a time consuming table to make let's also save it
saveRDS(prob_table_df, 'prob_table.RDS')
prob_gor
#since this is a time consuming table to make let's also save it
saveRDS(prob_table, 'prob_table.RDS')
prob_table <- prob_table %>%
mutate(Probability = i_beats_j,
OddsRatio = Probability/(1-Probability))
prob_table %>%
dplyr::select(i,j,Probability,OddsRatio) %>%
kable(caption='Posterior probabilities of the novel stimuli i being selected over the trained stimuli j',
booktabs=T,
digits=2,
col.names = c('Item i', 'Item j', 'Probability', 'Odds Ratio')) %>%
kableExtra::kable_styling() %>%
kableExtra::pack_rows("Gorilla", 1, 8) %>%
kableExtra::pack_rows("Chimpanzee", 9, 16) %>%
kableExtra::pack_rows("Macaque", 17, 24)
prob_table %>%
dplyr::select(i,j,Probability,OddsRatio) %>%
kable(format='latex',
caption='Posterior probabilities of the novel stimuli i being selected over the trained stimuli j',
booktabs=T,
digits=2,
col.names = c('Item i', 'Item j', 'Probability', 'Odds Ratio')) %>%
kableExtra::kable_styling() %>%
kableExtra::pack_rows("Gorilla", 1, 8) %>%
kableExtra::pack_rows("Chimpanzee", 9, 16) %>%
kableExtra::pack_rows("Macaque", 17, 24)
d<-read.table("data/MHLC.txt", sep="\t", header=T)
d<-as.data.frame(d)
sample_n(d, size=5) %>%
kable(caption = 'Sample of rows from the original data')
d <- d %>% mutate(SubjectID = row_number())
cols_to_pivot<-colnames(d)[1:10]
d_longer<-tidyr::pivot_longer(d, cols=all_of(cols_to_pivot), names_to='comparison', values_to='y')
comp_cols <- str_split_fixed(d_longer$comparison, "", 2)
d_longer$choice0 <- comp_cols[,1]
d_longer$choice1 <- comp_cols[,2]
dplyr::sample_n(d_longer, size=10) %>%
kable()
#choice0
d_longer$choice0 <- recode(d_longer$choice0, 'A'='Active')
d_longer$choice0 <- recode(d_longer$choice0, 'B'='Active-Collaborative')
d_longer$choice0 <- recode(d_longer$choice0, 'C'='Collaborative')
d_longer$choice0 <- recode(d_longer$choice0, 'D'='Passive-Collaborative')
d_longer$choice0 <- recode(d_longer$choice0, 'E'='Passive')
#choice1
d_longer$choice1 <- recode(d_longer$choice1, 'A'='Active')
d_longer$choice1 <- recode(d_longer$choice1, 'B'='Active-Collaborative')
d_longer$choice1 <- recode(d_longer$choice1, 'C'='Collaborative')
d_longer$choice1 <- recode(d_longer$choice1, 'D'='Passive-Collaborative')
d_longer$choice1 <- recode(d_longer$choice1, 'E'='Passive')
d_longer <- d_longer %>%
mutate(Internal = scale(MHLC_INTERNAL),
Chance = scale(MHLC_CHANCE),
Doctors = scale(MHLC_DOCTORS),
OtherPeople = scale(MHLC_OTHER_PEOPLE))
m3 <- load_bpc_model('fittedmodels/m_mhloc_subjectpred_U.RDS')
d_longer
colnames(d_longer)
d_longer$choice0
newdata <- tibble::tribble(~choice0, ~choice1, ~Internal, ~Chance, ~Doctors, ~OtherPeople,
"Active", "Passive", 0, 0, 0, 0,
"Active", "Passive", -2, 0, 0, 0,
"Active", "Passive", 2, 0, 0, 0,
"Active", "Passive", 0, 0, -2, 0,
"Active", "Passive", 0, 0, 2, 0,
"Active-Collaborative", "Collaborative", 0, 0, 0, 0,
"Active-Collaborative", "Collaborative", -2, 0, 0, 0,
"Active-Collaborative", "Collaborative", 2, 0, 0, 0,
"Active-Collaborative", "Collaborative", 0, 0, -2, 0,
"Active-Collaborative", "Collaborative", 0, 0, 2, 0,
"Collaborative", "Passive-Collaborative", 0, 0, 0, 0,
"Collaborative", "Passive-Collaborative", 0, -2, 0, 0,
"Collaborative", "Passive-Collaborative", 0, 2, 0, 0,
"Collaborative", "Passive-Collaborative", 0, 0, 0, -2,
"Collaborative", "Passive-Collaborative", 0, 0, 0, 2
)
newdata <- tibble::tribble(~choice0, ~choice1, ~Internal, ~Chance, ~Doctors, ~OtherPeople,
"Active", "Passive", 0, 0, 0, 0,
"Active", "Passive", -2, 0, 0, 0,
"Active", "Passive", 2, 0, 0, 0,
"Active", "Passive", 0, 0, -2, 0,
"Active", "Passive", 0, 0, 2, 0,
"Active-Collaborative", "Collaborative", 0, 0, 0, 0,
"Active-Collaborative", "Collaborative", -2, 0, 0, 0,
"Active-Collaborative", "Collaborative", 2, 0, 0, 0,
"Active-Collaborative", "Collaborative", 0, 0, -2, 0,
"Active-Collaborative", "Collaborative", 0, 0, 2, 0,
"Collaborative", "Passive-Collaborative", 0, 0, 0, 0,
"Collaborative", "Passive-Collaborative", 0, -2, 0, 0,
"Collaborative", "Passive-Collaborative", 0, 2, 0, 0,
"Collaborative", "Passive-Collaborative", 0, 0, 0, -2,
"Collaborative", "Passive-Collaborative", 0, 0, 0, 2
)
#Now we can calculate the probabilities
prob_hloc <-
get_probabilities_df(
m3,
newdata = newdata,
model_type = 'bt-subjectpredictors') #here we are assuming zero for the random effects
m3
m3$stanfit
m3$stanfit$`S[1,2]
``
m3$stanfit$`S[1,1]`
m3$stanfit$`S[1,1]`
m3$stanfit
s<=m3$stanfit
s<-m3$stanfit
s
s$`S[1,1]`
s[.`S[1,1]`]
s[,`S[1,1]`]
s[`S[1,1]`,]
load_all("../bpcs")
#Now we can calculate the probabilities
prob_hloc <-
get_probabilities_df(
m3,
newdata = newdata,
model_type = 'bt-subjectpredictors') #here we are assuming zero for the random effects
load_all("../bpcs")
get_probabilities_df(
m3,
newdata = newdata,
model_type = 'bt-subjectpredictors')
m3$call_arg$subject_predictors <- c('Internal', 'Chance', 'Doctors', 'OtherPeople')
load_all("../bpcs")
#Now we can calculate the probabilities
prob_hloc <-
get_probabilities_df(
m3,
newdata = newdata,
model_type = 'bt-subjectpredictors') #here we are assuming zero for the random effects
save_bpc_model(m3, 'm_mhloc_subjectpred_U', 'fittedmodels')
prob_hloc
load_all("../bpcs")
#Now we can calculate the probabilities
prob_hloc <-
get_probabilities_df(
m3,
newdata = newdata,
model_type = 'bt-subjectpredictors') #here we are assuming zero for the random effects
load_all("../bpcs")
#Now we can calculate the probabilities
prob_hloc <-
get_probabilities_df(
m3,
newdata = newdata,
model_type = 'bt-subjectpredictors') #here we are assuming zero for the random effects
load_all("../bpcs")
#Now we can calculate the probabilities
prob_hloc <-
get_probabilities_df(
m3,
newdata = newdata,
model_type = 'bt-subjectpredictors') #here we are assuming zero for the random effects
load_all("../bpcs")
#Now we can calculate the probabilities
prob_hloc <-
get_probabilities_df(
m3,
newdata = newdata,
model_type = 'bt-subjectpredictors') #here we are assuming zero for the random effects
load_all("../bpcs")
#Now we can calculate the probabilities
prob_hloc <-
get_probabilities_df(
m3,
newdata = newdata,
model_type = 'bt-subjectpredictors') #here we are assuming zero for the random effects
prob_hloc
load_all("../bpcs")
#Now we can calculate the probabilities
prob_hloc <-
get_probabilities_df(
m3,
newdata = newdata,
model_type = 'bt-subjectpredictors') #here we are assuming zero for the random effects
kable(prob_hloc,
caption = "Probabilities of selecting between the different roles based on changes of the values of the HLOC dimensions",
digits = 2,
booktabs = T)
prob_hloc %>%
select(-j_beats_i) %>%
rename(i_beats_j='Probability') %>%
kable(caption = "Probabilities of selecting between the different roles based on changes of the values of the HLOC dimensions",
digits = 2,
booktabs = T)
prob_hloc %>%
select(-j_beats_i) %>%
rename(Probability=i_beats_j) %>%
kable(caption = "Probabilities of selecting between the different roles based on changes of the values of the HLOC dimensions",
digits = 2,
booktabs = T)
prob_hloc %>%
select(-j_beats_i) %>%
rename(Probability=i_beats_j) %>%
kable(caption = "Probabilities of selecting role i instead of j based on changes of the values of the HLOC dimensions",
digits = 2,
booktabs = T)
prob_hloc %>%
select(-j_beats_i) %>%
rename(Probability=i_beats_j) %>%
kable(caption = "Probabilities of selecting role i instead of j based on changes of the values of the HLOC dimensions",
digits = 2,
booktabs = T) %>%
kableExtra::add_header_above(c("Roles" = 2, "HLOC dimensions" = 4))
prob_hloc %>%
select(-j_beats_i) %>%
rename(Probability=i_beats_j) %>%
kable(caption = "Probabilities of selecting role i instead of j based on changes of the values of the HLOC dimensions",
digits = 2,
booktabs = T) %>%
kableExtra::add_header_above(c("Roles" = 2, "HLOC dimensions" = 4, " "=1))
prob_hloc %>%
select(-j_beats_i) %>%
rename(Probability=i_beats_j) %>%
kable(
format='latex',
caption = "Probabilities of selecting role i instead of j based on changes of the values of the HLOC dimensions",
digits = 2,
booktabs = T) %>%
kableExtra::add_header_above(c("Roles" = 2, "HLOC dimensions" = 4, " "=1))
prob_hloc %>%
select(-j_beats_i) %>%
rename(Probability=i_beats_j) %>%
kable(
format='latex',
caption = "Probabilities of selecting role i instead of j based on changes of the values of the HLOC dimensions",
digits = 3,
booktabs = T) %>%
kableExtra::add_header_above(c("Roles" = 2, "HLOC dimensions" = 4, " "=1))
prob_hloc %>%
select(-j_beats_i) %>%
rename(Probability=i_beats_j) %>%
kable(
format='latex',
caption = "Probabilities of selecting role i instead of j based on changes of the values of the HLOC dimensions",
digits = 2,
booktabs = T) %>%
kableExtra::add_header_above(c("Roles" = 2, "HLOC dimensions" = 4, " "=1))
prob_hloc$i <- recode(prob_hloc$i, 'Active-Collaborative'='Act.-Collab.')
prob_hloc$i <- recode(prob_hloc$i, 'Collaborative'='Collab.')
prob_hloc$j <- recode(prob_hloc$j, 'Collaborative'='Collab.')
prob_hloc$j <- recode(prob_hloc$j, 'Passive-Collaborative'='Pass.-Collab.')
prob_hloc %>%
select(-j_beats_i) %>%
rename(Probability=i_beats_j) %>%
kable(
format='latex',
caption = "Probabilities of selecting role i instead of j based on changes of the values of the HLOC dimensions",
digits = 2,
booktabs = T) %>%
kableExtra::add_header_above(c("Roles" = 2, "HLOC dimensions" = 4, " "=1))
bookdown::render_book()
bookdown::render_book('index.Rmd', 'all')
library(bpcs)
library(tidyverse)
options(mc.cores = parallel::detectCores())
rstan::rstan_options(auto_write = TRUE)
set.seed(99)
d <- readxl::read_xlsx('data/moisture.xlsx', sheet = 'Exp02_BTmodel')
sample_n(d, size = 5) %>%
kable(caption = 'Sample of the original data')
library(bpcs)
library(tidyverse)
library(knitr)
options(mc.cores = parallel::detectCores())
rstan::rstan_options(auto_write = TRUE)
set.seed(99)
d <- readxl::read_xlsx(path='data/PREF_DATA.xlsx', sheet = 'Pizza')
sample_n(d, size=5) %>%
kable(caption="Example of the pizza data frame")
dpizza <- expand_aggregated_data(d = d, player0 = 'Prod1', player1 = 'Prod2', wins0 = 'Win1', wins1 = 'Win2', keep=NULL)
# renaming the columns
colnames(dpizza) <- c('Prod0','Prod1', 'y', 'contest_id')
# creating a short table to exemplify
sample_n(dpizza, size = 10) %>%
kable(caption = 'Sample of the expanded pizza data set')
m <- load_bpc_model('fittedmodels/pizza.RDS')
#posterior predictive check
y_pp <- posterior_predictive(m)
posterior_predictive(m)
library(devtools)
load_all("../bpcs/")
m$predictors_matrix
load_all("../bpcs/")
#posterior predictive check
y_pp <- posterior_predictive(m)
load_all("../bpcs/")
#posterior predictive check
y_pp <- posterior_predictive(m)
predict(m,newdata = d)
d
m <- bpc(data = dpizza,
player0 = 'Prod0',
player1 = 'Prod1',
result_column = 'y',
solve_ties = 'none',
model_type = 'bt',
iter=3000)
save_bpc_model(m, 'pizza','fittedmodels')
#posterior predictive check
y_pp <- posterior_predictive(m)
load_all("../bpcs/")
#posterior predictive check
y_pp <- posterior_predictive(m)
y <- y_pp$y
y_pred <- y_pp$y_pred
bookdown::render_book('index.Rmd', 'all')
bookdown::render_book('index.Rmd', 'all')
clean_cache(clean = T)
knitr::opts_chunk$get('cache.path')
bookdown::render_book('index.Rmd', 'all')
library(bpcs)
library(tidyverse)
library(knitr)
options(mc.cores = parallel::detectCores())
rstan::rstan_options(auto_write = TRUE)
set.seed(99)
d <- readxl::read_xlsx(path='data/PREF_DATA.xlsx', sheet = 'Pizza')
sample_n(d, size=5) %>%
kable(caption="Example of the pizza data frame")
dpizza <- expand_aggregated_data(d = d, player0 = 'Prod1', player1 = 'Prod2', wins0 = 'Win1', wins1 = 'Win2', keep=NULL)
# renaming the columns
colnames(dpizza) <- c('Prod0','Prod1', 'y', 'contest_id')
# creating a short table to exemplify
sample_n(dpizza, size = 10) %>%
kable(caption = 'Sample of the expanded pizza data set')
m <- load_bpc_model('fittedmodels/pizza.RDS')
#posterior predictive check
y_pp <- posterior_predictive(m)
#posterior predictive check
y_pp <- posterior_predictive(m)
y <- y_pp$y
y_pred <- y_pp$y_pred
bookdown::render_book('index.Rmd', 'all')
bookdown::render_book('index.Rmd', 'all')
bookdown::render_book('index.Rmd', 'all')
bookdown::render_book('index.Rmd', 'all')
bookdown::render_book('index.Rmd', 'all')
bookdown::render_book('index.Rmd', 'html_book')
bookdown::render_book('index.Rmd', 'gitbook')
bookdown::render_book("index.Rmd", "bookdown::gitbook")
citation('ggplot2')
citation('kableExtra')