Answers for "how to convert data into matrix 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 "how to convert data into matrix in r"

Browse Popular Code Answers by Language