Answers for "reformat the dataframe one vector for integer and the other for the character in R"

R
0

how to convert matrix to numeric in r

apply(extra4, 2, as.numeric)
sapply(extra4, as.numeric)
class(extra4) <- "numeric"
storage.mode(extra4) <- "numeric"
Posted by: Guest on May-17-2020

Code answers related to "reformat the dataframe one vector for integer and the other for the character in R"

Browse Popular Code Answers by Language