listo_to_Array3D <- function(data){
dimData <- dim(data[[1]])
lengthData <- length(data)
temp <- array(unlist(data), dim = c(dimData, lengthData))
rownames(temp) <- rownames(data[[1]])
colnames(temp) <- colnames(data[[1]])
return(temp)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.