Nothing
#' @rdname predict_pls_latent
#' @exportS3Method stats::predict
predict.pls.cox=function(object, newdata, scale.X=TRUE, scale.Y=TRUE, ...)
{
if (missing(newdata))
stop("No new data available.")
X <- object$X
if (!is.null(X)) {
X <- as.matrix(X)
}
Y <- object$Y
if (!is.null(Y)) {
Y <- as.matrix(Y)
}
a <- object$loadings$X
b <- object$loadings$Y
if (is.null(a)) {
stop("The PLS fit does not contain X loadings; cannot proceed with prediction.")
}
if (is.null(b)) {
stop("The PLS fit does not contain Y loadings; cannot proceed with prediction.")
}
if (is.null(Y)) {
stop("The PLS fit does not contain the response used during training; cannot compute predictions.")
}
p <- if (!is.null(X)) {
ncol(X)
} else {
nrow(as.matrix(a))
}
q <- ncol(Y)
if (length(dim(newdata)) == 2) {
if (ncol(newdata) != p)
stop("'newdata' must be a numeric matrix with ncol = ",
p, " or a vector of length = ", p, ".")
}
if (length(dim(newdata)) == 0) {
if (length(newdata) != p)
stop("'newdata' must be a numeric matrix with ncol = ",
p, " or a vector of length = ", p, ".")
dim(newdata) = c(1, p)
}
means.X <- if (!is.null(X)) attr(X, "scaled:center") else NULL
if (is.null(means.X)) {
means.X <- rep(0, p)
}
sigma.X <- if (!is.null(X)) attr(X, "scaled:scale") else NULL
if (is.null(sigma.X)) {
sigma.X <- rep(1, p)
}
means.Y <- attr(Y, "scaled:center")
if (is.null(means.Y)) {
means.Y <- rep(0, q)
}
sigma.Y <- attr(Y, "scaled:scale")
if (is.null(sigma.Y)) {
sigma.Y <- rep(1, q)
}
ncomp = object$ncomp
c = object$mat.c
newdata = as.matrix(newdata)
ones = matrix(rep(1, nrow(newdata)), ncol = 1)
B.hat = array(0, dim = c(p, q, ncomp))
Y.hat = array(0, dim = c(nrow(newdata), q, ncomp))
t.pred = array(0, dim = c(nrow(newdata), ncomp))
for (h in 1:ncomp) {
W = a[, 1:h] %*% solve(t(c[, 1:h]) %*% a[, 1:h])
B = W %*% drop(t(b[, 1:h]))
if(scale.Y){B = scale(B, center = FALSE, scale = 1/sigma.Y)}
if(scale.X){B = as.matrix(scale(t(B), center = FALSE, scale = sigma.X))}
if(!scale.X){B = as.matrix(t(B))}
if(scale.X&scale.Y){intercept = -scale(B, center = FALSE, scale = 1/means.X)
intercept = matrix(apply(intercept, 1, sum) + means.Y,
nrow = 1)
Y.hat[, , h] = newdata %*% t(B) + ones %*% intercept}
if(scale.X&!scale.Y){intercept = -scale(B, center = FALSE, scale = 1/means.X)
intercept = matrix(apply(intercept, 1, sum), nrow = 1)
Y.hat[, , h] = newdata %*% t(B) + ones %*% intercept}
if(!scale.X&scale.Y){intercept = -B
intercept = matrix(apply(intercept, 1, sum) + means.Y,
nrow = 1)
Y.hat[, , h] = newdata %*% t(B) + ones %*% intercept}
if(!scale.X&!scale.Y){Y.hat[, , h] = newdata %*% t(B)}
if(!scale.X){t.pred[, h] = newdata %*% W[, h]}
if(scale.X){t.pred[, h] = scale(newdata, center = means.X, scale = sigma.X) %*% W[, h]}
B.hat[, , h] = B
}
rownames(t.pred) = rownames(newdata)
colnames(t.pred) = paste("dim", c(1:ncomp), sep = " ")
rownames(Y.hat) = rownames(newdata)
colnames(Y.hat) = colnames(Y)
return(invisible(list(predict = Y.hat, variates = t.pred,
B.hat = B.hat)))
}
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.