Nothing
#' Print function for regDIF function
#'
#' @param x Fitted regDIF model object.
#' @param ... Additional arguments to be passed through \code{print}.
#'
#' @rdname print.regDIF
#'
#' @return \code{NULL}
#' @export
print.regDIF <-
function(x, ...) {
# Print to screen with line break.
cat("Call:\n")
# Print the model formula we fit.
print(x$call)
# Create table to display results.
table <- data.frame(
"tau" = x$tau_vec,
"bic" = x$bic
)
cat("\nregDIF results:\n")
# Print the results table.
print(table)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.