Import some packages.
library(flextable)
library(tidyverse)
library(broom)
Copy over the table formatting function.
# turn dataframe into html table
<- function(data) {
formatAsTable %>%
data mutate(across(where(is.double), ~ round(., 3))) %>%
%>%
flextable color(color = "white", part = "all")
}
Import the data and look at the top three rows.
<- read_csv(file.path("..", "data", "check-pilot.csv"))
chks
%>%
chks head(3) %>%
%>%
formatAsTable autofit
interdep | disclose | intcheck | discheck |
0 | 0 | Neither agree nor disagree | Strongly disagree |
1 | 1 | Somewhat agree | Strongly agree |
1 | 1 | Somewhat disagree | Neither agree nor disagree |
Clean up data for the analyses.
<- c("Strongly agree",
scale_order "Somewhat agree",
"Neither agree nor disagree",
"Somewhat disagree",
"Strongly disagree")
<- 5:1 %>%
scale_key set_names(scale_order)
<- chks %>%
chks mutate(across(ends_with("check"),
~ factor(., scale_order, ordered = T),
.names = "{col}.f")) %>%
mutate(across(ends_with("check"),
~ recode(., !!!scale_key))) %>%
mutate(discor = ifelse(disclose == 0,
< 3,
discheck > 3),
discheck intcor = ifelse(interdep == 0,
< 3,
intcheck > 3)) %>%
intcheck mutate(correct = discor & intcor)
How many respondents clicked each scale option in each condition?
%>%
chks count(interdep, intcheck.f) %>%
arrange(interdep, desc(intcheck.f)) %>%
%>%
formatAsTable %>%
autofit bg(bg = "#074005",
i = ~ ifelse(interdep == 0,
< 3,
scale_key[intcheck.f] > 3)) scale_key[intcheck.f]
interdep | intcheck.f | n |
0 | Strongly disagree | 3 |
0 | Neither agree nor disagree | 1 |
1 | Somewhat disagree | 1 |
1 | Somewhat agree | 2 |
1 | Strongly agree | 2 |
%>%
chks count(disclose, discheck.f) %>%
arrange(disclose, desc(discheck.f)) %>%
%>%
formatAsTable %>%
autofit bg(bg = "#074005",
i = ~ ifelse(disclose == 0,
< 3,
scale_key[discheck.f] > 3)) scale_key[discheck.f]
disclose | discheck.f | n |
0 | Strongly disagree | 5 |
1 | Neither agree nor disagree | 1 |
1 | Strongly agree | 3 |
Exactly 7 of 9 participants, or 77.7777777777778%, responded to both manipulation checks correctly.
Is there a significant relationship between the manipulation and the manipulation checks?
<- lm(intcheck ~ interdep, chks)
intfit tidy(intfit) %>%
formatAsTable
term | estimate | std.error | statistic | p.value |
(Intercept) | 1.5 | 0.567 | 2.646 | 0.033 |
interdep | 2.5 | 0.761 | 3.287 | 0.013 |
<- lm(discheck ~ disclose, chks)
disfit tidy(disfit) %>%
formatAsTable
term | estimate | std.error | statistic | p.value |
(Intercept) | 1.0 | 0.293 | 3.416 | 0.011 |
disclose | 3.5 | 0.439 | 7.970 | 0.000 |
Output document:
options(knitr.duplicate.label = "allow")
::render("check-pilot-v02-CR.Rmd", output_dir = file.path("..", "github", "thesis")) rmarkdown