Yes, the entire csv file was renamed to "kits" with one of the variables named "weeks".
I tried the formula but it said the object "weeks" wasn't found:
df <- data.frame(weeks = c(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))
df %>%
mutate(weeks = ifelse(weeks == 0, 0, 1))