Nothing
#' Package startup message
#'
#' @param libname library location
#' @param pkgname package name
#' @return No return value, called for side effects.
#' @importFrom utils packageVersion
.onAttach <- function(libname, pkgname) {
packageStartupMessage(paste0(
"Welcome to modelscompete4 v", packageVersion("modelscompete4"), "\n",
"A package for comparing nested and non-nested SEM models\n",
"Type ?compare_models for help"
))
}
#' Package load
#'
#' @param libname library location
#' @param pkgname package name
#' @return No return value, called for side effects.
.onLoad <- function(libname, pkgname) {
# No special initialization needed
invisible()
}
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.