Hi! I'm very new to R and keep running into an issue with changing the class of my data columns. I watched and read some tutorials which led me to the code
my_data_inflow %>% **
** mutate( Depth = as.numeric(Depth..m.))
for example. However, when I then use
sapply(my_data_inflow, class)
I see that the Depth column is still character, not numeric. Does anyone have any suggestions for this? Thank you so much in advance!