Nothing
#' Create Index for the Parameter Vector
#'
#' @param p Positive integer.
#' `p` regressors.
#'
#' @family Parameters Functions
#' @keywords strRegression parameters internal
#' @noRd
.ThetaIndex <- function(p) {
return(
list(
beta = paste0(
"beta",
seq_len(p)
),
sigmasq = "sigmasq",
vechsigmacapx = paste0(
"sigma",
.VechNames(
x = paste0("x", seq_len(p)),
sep = ""
)
),
beta0 = "beta0",
mux = paste0(
"mux",
seq_len(p)
)
)
)
}
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.