-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
782bdbd
commit 031eda1
Showing
4 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#' Check for sparse elements | ||
#' | ||
#' This function checks to see if a data.frame, tibble or list contains one or | ||
#' more sparse vectors. | ||
#' | ||
#' @param x a data frame, tibble, or list. | ||
#' | ||
#' @details | ||
#' The checking in this function is done using [is_sparse_vector()], but is | ||
#' implemented using an early exit pattern to provide fast performance for wide | ||
#' data.frames. | ||
#' | ||
#' This function does not test whether `x` is a data.frame, tibble or list. It | ||
#' simply iterates over the elements and sees if they are sparse vectors. | ||
#' | ||
#' @return A single logical value. | ||
#' | ||
#' @examplesIf rlang::is_installed("Matrix") | ||
#' set.seed(1234) | ||
#' n_cols <- 10000 | ||
#' mat <- matrix(sample(0:1, n_cols * 10, TRUE, c(0.9, 0.1)), ncol = n_cols) | ||
#' colnames(mat) <- as.character(seq_len(n_cols)) | ||
#' sparse_mat <- Matrix::Matrix(mat, sparse = TRUE) | ||
#' | ||
#' res <- coerce_to_sparse_tibble(sparse_mat) | ||
#' has_sparse_elements(res) | ||
#' | ||
#' has_sparse_elements(mtcars) | ||
#' @export | ||
has_sparse_elements <- function(x) { | ||
res <- FALSE | ||
|
||
for (elt in x) { | ||
if (is_sparse_vector(elt)) { | ||
res <- TRUE | ||
break | ||
} | ||
} | ||
res | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,4 @@ reference: | |
contents: | ||
- type-predicates | ||
- extractors | ||
- has_sparse_elements |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.