Answers for "How many types of data types are present in R?"

R
0

data types in r

# Create a matrix.
M = matrix( c('a','a','b','c','b',1), nrow = 2, ncol = 3, byrow = TRUE)

print(M)
Posted by: Guest on December-08-2020

Code answers related to "How many types of data types are present in R?"

Browse Popular Code Answers by Language