R/dts.R

Defines functions print.dts

## Currently the dts class is a trick to avoid printing the seed attribute
## of results of simulate.*

#' @export
print.dts <- function(x, ...) {
  attr(x, "seed") <- NULL
  NextMethod()
}

Try the mixvlmc package in your browser

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

mixvlmc documentation built on Nov. 2, 2023, 5:32 p.m.