As discussed at http://blog.rstudio.org/2016/01/06/purrr-0-2-0/#comment-20462 running transpose() on lists of non-conforming dimensions should result in an error, not a warning.
Currently, the following leads to an empty $error element (and a $result element where the z data in the original object has disappeared):
x = rerun(5, x = runif(1), y = runif(5))
x[[4]]$z = 3:5
safely(transpose)(x)
As discussed at http://blog.rstudio.org/2016/01/06/purrr-0-2-0/#comment-20462 running
transpose()on lists of non-conforming dimensions should result in an error, not a warning.Currently, the following leads to an empty
$errorelement (and a$resultelement where thezdata in the original object has disappeared):