set_dim.Rd
Set dimensions of an Object
set_dim(x, dim)
an R object, for example a matrix, array or data frame.
base::dim
x <- 1:12 set_dim(x, c(3,4)) #> [,1] [,2] [,3] [,4] #> [1,] 1 4 7 10 #> [2,] 2 5 8 11 #> [3,] 3 6 9 12