I'm trying to change the participants' Age variable (in my dataset) that's showing as character (rather than numeric) using the following code..
bwdata6 <- bwdata6 %>% mutate(Age <- as.numeric(Age))
I get the following warning message when I run the code...
Warning messages: 1: Problem with mutate() input ..1. i NAs introduced by coercion
Input ..1 is Age <- as.numeric(Age). 2: In mask$eval_all_mutate(dots[[i]]) :
NAs introduced by coercion
Any ideas how to resolve this?