In the 3 Dimensional array bellow :
ar <- array(someData, c(5, 5, 5)); rownames(ar) <- ...; #to set up row names colnames(ar) <- ...; #to set up
You can either set the dimnames argument when defining the array:
dimnames
ar <- array(data = 1:27, dim = c(3, 3, 3), dimnames = list(c("a", "b", "c"), c("d", "e", "f"), c("g", "h", "i")))
and/or you can set the dimnames of the third dimension like so:
dimnames(ar)[[3]] <- c("G", "H", "I")