Description Usage Arguments Details Value Author(s) Examples
For objects of class polr
, it calculates the average change in
predicted probabilities, for discrete changes in a covariate holding all
other variables at their observed values.
1 | ordChange2(obj, varnames, data, diffchange = c("sd", "unit"), n = 1, R = 1500)
|
obj |
A model object of class |
varnames |
A vector of strings identifying the variable to be manipulated. |
data |
Data frame used to fit |
diffchange |
A string indicating the difference in predictor values to
calculate the discrete change. |
n |
Number of |
R |
Number of simulations. |
The function calculates the changes in predicted probabilities for maximal
discrete changes in the covariates for objects of class polr
. This
function works with polynomials specified with the poly
function. It
also works with multiplicative interactions of the covariates by virtue of
the fact that it holds all other variables at typical values. By default,
typical values are the median for quantitative variables and the mode for
factors. The way the function works with factors is a bit different. The
function identifies the two most different levels of the factor and
calculates the change in predictions for a change from the level with the
smallest prediction to the level with the largest prediction.
A list with the following elements:
diffs |
A matrix of calculated first differences |
minmax |
A matrix of values that were used to calculate the predicted changes |
minPred |
A matrix of predicted probabilities when each variable is held at its minimum value, in turn. |
maxPred |
A matrix of predicted probabilities when each variable is held at its maximum value, in turn. |
Dave Armstrong
1 2 3 4 5 6 7 8 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.