so I've been trying to implement this action for ages now and some or the other error keeps coming; in the beginning it was error -
no applicable method for "select_" applied to an object of class 'character' and now it's unknown column 'prime_code'.
Here's my code:
dat_r_rdc <- dplyr::select(as.data.frame(dat_r), "prime_code", "language", "country", "correct_pct") %>%
dplyr::mutate(dat_r, condition = recode("prime_code", "1"= professor, "0"=hooligan)) %>%
dplyr::filter(language$dat_r, English)
Can someone tell me what's wrong?