简体   繁体   中英

Getting: "Error in cor(data) : 'x' must be numeric" when determining correlation between 2 variables in a data frame

这是数据框和错误文本

Your variables are factors. Convert to numeric. It's convoluted, but convert to character first (converting from factor directly leads to weirdness).

library(dplyr)
H <- H %>% mutate(across(everything(), ~as.numeric(as.character(.))))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM