Nothing
# split multi-sided formula into a list of (one- or two-sided) formulas
# * for tilde-separated formulas, response is only for the first model
# * for bar-separated formulas, response is with all component models
frmsplit <-
function(x) {
f <- formula(x)
env <- environment(f)
.op <- \(expr) if(is.call(expr)) deparse1(expr[[1L]], backtick = FALSE) else ""
# decompose multi-sided (n > 2), i.e. [y] ~ a ~ b ~ c
f1 <- f
rval <- list()
while(.op(f1) == "~") {
rval[[length(rval) + 1L]] <- f1[[length(f1)]]
f1 <- f1[[2L]]
}
response <- if(!identical(f1, rval[[length(rval)]])) f1 else NULL
mform.tilde <- length(rval) != 1L
# one or two-sided [y] ~ a + b
if(length(rval) == 1L) {
rhs <- rval[[1L]] # remove ~
rval <- list()
# bar-split formula y ~ a | b
while(.op(rhs) == "|") {
rval[[length(rval) + 1L]] <- rhs[[3L]]
rhs <- rhs[[2L]]
}
rval[[length(rval) + 1L]] <- rhs
}
rval <- rev(rval)
if(is.null(response)) {
noresp <- seq.int(1L, length(rval))
resp <- 0L
} else {
if(mform.tilde) {
# has lhs and is ~-separated - attach the response to FIRST right-sided formula:
resp <- 1L
noresp <- seq.int(2L, length(rval)) # because length(rval) > 1L
} else {
# has lhs - attach the response to each right-sided formula:
resp <- seq.int(1L, length(rval))
noresp <- 0L
}
}
rval[resp] <- lapply(rval[resp], function(g) formula(call("~", response, g), env = env))
rval[noresp] <- lapply(rval[noresp], function(g) formula(call("~", g), env = env))
if(length(rval) != 1L)
attr(rval, "mform.style") <- if(mform.tilde) "~" else "|"
rval
}
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.