Troubles with sapply
[This article was first published on log Fold Change » r, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Say your function in sapply returns a matrix with a variable number of rows. For example
ff <- function( i ) matrix( i, ncol= 3, nrow= i ) pipa <- sapply( 1:3, , simplify= "array" )
sapply is too stupid to see the pattern here (or maybe I don’t know how to cast the return value into an appropriate shape…). The result of the above is a list:
[[1]] [,1] [,2] [,3] [1,] 1 1 1 [[2]] [,1] [,2] [,3] [1,] 2 2 2 [2,] 2 2 2 [[3]] [,1] [,2] [,3] [1,] 3 3 3 [2,] 3 3 3 [3,] 3 3 3
However, we can turn this list of matrices into a simple matrix using Reduce:
pipa <- Reduce( function( ... ) rbind( ... ), pipa )
To leave a comment for the author, please follow the link and comment on their blog: log Fold Change » r.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.