R/dim.dataquieR_resultset2.R

Defines functions dim.dataquieR_resultset2

Documented in dim.dataquieR_resultset2

#' Get the dimensions of a `dq_report2` result
#'
#' @param x a `dataquieR_resultset2` result
#'
#' @return dimensions
#' @export
dim.dataquieR_resultset2 <- function(x) {
  stopifnot(inherits(x, "dataquieR_resultset2"))
  c(length(rownames(x)), length(colnames(x)), length(resnames(x)))
}

Try the dataquieR package in your browser

Any scripts or data that you put into this service are public.

dataquieR documentation built on July 26, 2023, 6:10 p.m.