Nothing
#' @keywords internal
getD <- function(q, arg) {
D <- matrix(0, q, length(arg))
for (i in 1:q) {
D[i, ] <- arg^(i - 1)
}
return(D) # calculate the Z-design matrix
}
#' @keywords internal
notNA <- function(x) {
!(is.vector(x) & length(x) == 1 & any(is.na(x)))
}
#' @keywords internal
sep <- function(ests, logical) {
if (logical == FALSE) {
ests <- "No separate results requested"
}
ests
}
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.