Selective Attention Test
pander(summary(gorilla.pass.1), caption = "흰 셔츠 팀의 패스 성공횟수는?")
흰 셔츠 팀의 패스 성공횟수는?
4 |
13 |
14 |
13.8 |
15 |
20 |
5 |
pander(table(gorilla.pass.1), caption = "흰 셔츠 팀의 패스 성공횟수는?")
흰 셔츠 팀의 패스 성공횟수는?
1 |
1 |
5 |
20 |
14 |
14 |
6 |
1 |
1 |
pander(table(gorilla.gorilla.1), caption = "고릴라 본 사람?")
tbl.gorilla.1 <- table(gorilla.gorilla.1)
pander(t(matrix(paste(format(prop.table(tbl.gorilla.1)*100, digits = 3, nsmall = 1), "%", sep = ""), nrow = dim(tbl.gorilla.1)[1], dimnames = dimnames(tbl.gorilla.1))))
Monkey Business Illusion
pander(summary(gorilla.pass.2), caption = "흰 셔츠 팀의 패스 성공횟수는?")
흰 셔츠 팀의 패스 성공횟수는?
3 |
16 |
16 |
15.1 |
16 |
17 |
5 |
pander(table(gorilla.pass.2), caption = "흰 셔츠 팀의 패스 성공횟수는?")
흰 셔츠 팀의 패스 성공횟수는?
2 |
1 |
1 |
1 |
2 |
3 |
2 |
50 |
1 |
tbl.gorilla.2 <- table(gorilla.gorilla.2)
pander(tbl.gorilla.2, caption = "고릴라 본 사람?")
pander(t(matrix(paste(format(prop.table(tbl.gorilla.2)*100, digits = 3, nsmall = 1), "%", sep = ""), nrow = dim(tbl.gorilla.2)[1], dimnames = dimnames(tbl.gorilla.2))))
tbl.curtain.color <- table(gorilla.curtain.color)
pander(tbl.curtain.color, caption = "커튼 색 바뀐 것 본 사람?")
pander(t(matrix(paste(format(prop.table(tbl.curtain.color)*100, digits = 3, nsmall = 1), "%", sep = ""), nrow = dim(tbl.curtain.color)[1], dimnames = dimnames(tbl.curtain.color))))
tbl.player.exit <- table(gorilla.player.exit)
pander(tbl.player.exit, caption = "선수 나가는 것 본 사람?")
pander(t(matrix(paste(format(prop.table(tbl.player.exit)*100, digits = 3, nsmall = 1), "%", sep = ""), nrow = dim(tbl.player.exit)[1], dimnames = dimnames(tbl.player.exit))))