#' Save LD matrix as a sparse matrix
#'
#' Converting LD matrices to sparse format reduces file size by half.
#' @param LD_matrix LD matrix to save.
#' @param LD_path Path to save LD matrix to.
#' @param verbose Print messages.
#' @family LD
#' @export
#' @examples
#' LD_matrix <- echodata::BST1_LD_matrix
#' LD_path <- saveSparse(LD_matrix = LD_matrix)
saveSparse <- function(LD_matrix,
LD_path=tempfile(fileext = ".rds"),
verbose = TRUE) {
# https://cmdlinetips.com/2019/05/introduction-to-sparse-matrices-in-r/
# LD_sparse <- Matrix::Matrix(as.matrix(LD_matrix), sparse = TRUE)
LD_sparse <- to_sparse(X = LD_matrix,
verbose = verbose)
# messager("Dense size:")
# print(object.size(LD_matrix),units="auto")
# messager("Sparse size:")
# print(object.size(LD_sparse),units="auto")
messager("Saving sparse LD matrix ==>", LD_path, v = verbose)
saveRDS(object = LD_sparse,
file = LD_path)
return(LD_path)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.