library(tidyverse)
dat <- read_csv("data/Math 241_ Check-in (Responses) - Form Responses 1.csv") %>%
rename(
problem_sets = `Problem sets for this course have been ________ for my learning`,
in_class = `In class activities for this course have been ________ for my learning`,
workload = `How has the workload been for the course so far?`,
classtime = `I wish we had...`,
ai = `What direction would you like to see the class go in regards to gen AI?`
) %>%
select(problem_sets, in_class, workload, classtime, ai) %>%
mutate(
problem_sets = fct_relevel(problem_sets,
"very helpful",
"somewhat helpful",
"neutral",
"somewhat unhelpful",
"very unhelpful"),
in_class = fct_relevel(in_class,
"very helpful",
"somewhat helpful",
"neutral",
"somewhat unhelpful",
"very unhelpful"),
workload = fct_relevel(workload,
"way too much work",
"a little too much work",
"just the right amount of work"),
ai = stringr::str_sub(ai, 1, 8),
ai = case_when(
ai %in% "Option 1" ~ "Debug",
ai %in% "Option 2" ~ "Debug + Write code",
ai %in% "Option 3" ~ "No AI",
TRUE ~ "Other"
)
)