hi all, when dputting a list of sparse matrices (Matrix package), the output does not contain the data but the information that the list contains sparse matrices.
M <- sparseMatrix(i = c(2, 1), j = c(1, 2), x = c(1, 1)) dput(M) ... works. dput(list(M, M)) ... does not work. how can I dput a list of sparse matrices? thx haiko [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.