Nothing
#' @export
universals::npars
#' @inherit universals::npars
#' @inheritParams params
#' @export
npars.mcarray <- function(x, scalar = NULL, ...) {
chk_unused(...)
if (is.null(scalar)) {
return(1L)
}
length(pars(x, scalar = scalar))
}
#' @inherit universals::npars
#' @inheritParams params
#' @export
npars.mcmcarray <- function(x, scalar = NULL, ...) {
chk_unused(...)
if (is.null(scalar)) {
return(1L)
}
length(pars(x, scalar = scalar))
}
#' @inherit universals::npars
#' @inheritParams params
#' @export
npars.mcmcr <- function(x, scalar = NULL, ...) {
chk_unused(...)
if (is.null(scalar)) {
return(length(x))
}
length(pars(x, scalar = scalar))
}
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.