Nothing
#' Residuals for regression models with ordinal outcomes
#'
#' Computes DPIT residuals for regression models with ordinal outcomes
#' using observed outcomes (`y`), ordinal outcome levels (`level`) and their fitted category
#' probabilities (`fitprob`).
#'
#'
#' @usage dpit_ordi(y, level, fitprob, plot=TRUE, scale="normal", line_args=list(), ...)
#' @param y An observed ordinal outcome vector.
#' @param level The names of the response levels. For instance, c(0,1,2).
#' @param fitprob A matrix of fitted category probabilities. Each row corresponds to an observation, and column j contains the fitted probability P(Y_i = j).
#' @param plot A logical value indicating whether or not to return QQ-plot
#' @param scale You can choose the scale of the residuals among `normal` and `uniform`.
#' The sample quantiles of the residuals are plotted against
#' the theoretical quantiles of a standard normal distribution under the normal scale,
#' and against the theoretical quantiles of a uniform (0,1) distribution under the uniform scale.
#' The default scale is `normal`.
#' @param line_args A named list of graphical parameters passed to
#' \code{graphics::abline()} to modify the reference (red) 45° line
#' in the QQ plot. If left empty, a default red dashed line is drawn.
#' @param ... Additional graphical arguments passed to
#' \code{stats::qqplot()} for customizing the QQ plot (e.g., \code{pch},
#' \code{col}, \code{cex}, \code{xlab}, \code{ylab}).
#' @returns DPIT residuals.
#'
#' @details
#' For formulation details on discrete outcomes, see \code{\link{dpit}}.
#'
#' @examples
#' ## Ordinal example
#' library(MASS)
#' n <- 500
#' x1 <- rnorm(n, mean = 2)
#' beta1 <- 3
#' # True model
#' p0 <- plogis(1, location = beta1 * x1)
#' p1 <- plogis(4, location = beta1 * x1) - p0
#' p2 <- 1 - p0 - p1
#' genemult <- function(p) {
#' rmultinom(1, size = 1, prob = c(p[1], p[2], p[3]))
#' }
#' test <- apply(cbind(p0, p1, p2), 1, genemult)
#' y1 <- rep(0, n)
#' y1[which(test[1, ] == 1)] <- 0
#' y1[which(test[2, ] == 1)] <- 1
#' y1[which(test[3, ] == 1)] <- 2
#' multimodel <- polr(as.factor(y1) ~ x1, method = "logistic")
#'
#' y1 <- multimodel$model[,1]
#' lev1 <- multimodel$lev
#' fitprob1 <- fitted(multimodel)
#'
#' resid.ord <- dpit_ordi(y=y1, level=lev1, fitprob=fitprob1)
#' @export
dpit_ordi <- function(y, level, fitprob,plot=TRUE, scale="normal", line_args=list(), ...) {
k <- length(level)
out <- as.numeric(factor(y, ordered = TRUE))
n <- length(out)
q <- t(apply(fitprob, 1, cumsum))
inde <- cbind(1:n, out)
res <- q[inde]
empcdf <- rep(NA, n)
for(i in 1:n){
if(i %in% which(out==k)) next
note <- matrix(NA, ncol=k, nrow=n)
for(p in 1:k){
note[,p] <- fitprob[, p] * (res[i] > q[, p])
}
note.sum <- rowSums(note)
note.sum[i] <- 0
empcdf[i] <- sum(note.sum)/(n-1)
}
# for loop with max values
ses <- ifelse(out == k, q[, 1], 0)
for(i in 1:n){
if(i %in% which(out != k)) next
pses <- (ses[i] < q[,1])*q[,k-1]
pses[pses==0] <- 1
pses[i] <- 0
empcdf[i] <- sum(pses)/(n-1)
}
.dpit_finalize(empcdf, plot=plot, scale=scale,line_args=line_args,...)
}
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.