R/utils-plm.R

Defines functions compare_proxy.plm as_plm print.plm

#' @export
print.plm <- function(x, ...,  sep = "\n") {
  if (length(x) > 0L) {
    cat(x, ..., sep = sep)
  }
  invisible(x)
}

as_plm <- function(x) {
  structure(x, class = c("plm", "character"))
}

compare_proxy.plm <- function(x, path = "x") {
  x <- unstructure(x)
  NextMethod()
}

Try the plume package in your browser

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

plume documentation built on Sept. 12, 2024, 7:31 a.m.