Usage
star.sequential(formula, data, global = NULL, test.rel = TRUE, test.glob = FALSE,
globcircle = FALSE, maxit = 100, scale = TRUE, nlines = NULL, select = NULL,
dist.x = 1, dist.y = 1, dist.cov = 1, dist.cat = 1, xpd = TRUE, main = "",
col.fill = "gray90", col.circle = "black", lwd.circle = 1,
lty.circle = "longdash", col.global = "black", lwd.global = 1,
lty.global = "dotdash", cex.labels = 1, cex.cat = 0.8, xlim = NULL,
ylim = NULL)Arguments
formula
An object of class formula. Formula for the sequential logit model to be fitted an visualized.
data
An object of class data.frame containing the covariates used in formula.
global
Numeric vector to choose a subset of predictors to be included with global coefficients. Default is to include all coefficients category-specific. Numbers refer to total amount of predictors, including intercept and dummy variables.
test.rel
Provides a Likelihood-Ratio-Test to test the relevance of the explanatory covariates.
The corresponding p-values will be printed as p-rel. test.rel=FALSE might
save a lot of time.
test.glob
Provides a Likelihood-Ratio-Test to test if a covariate has to be included as a category-specific covariate (in contrast to being global). The corresponding p-values will be printed as p-global. test.glob=FALSE and globcirc
globcircle
If TRUE, additional circles that represent the global effects of the covariates are plotted. test.glob=FALSE and globcircle=FALSE might save a lot of time.
maxit
Maximal number of iterations to fit the sequential logit model. See also
vglm.control. scale
If TRUE, the stars are scaled to equal maximal ray length.
nlines
If specified, nlines gives the number of lines in which the effect stars are plotted.
select
Numeric vector to choose only a subset of the stars to be plotted. Default is to plot all stars. Numbers refer to total amount of predictors, including intercept and dummy variables.
dist.x
Optional factor to increase/decrease distances between the centers of the stars on the x-axis. Values greater than
1 increase, values smaller than 1 decrease the distances.
dist.y
Optional factor to increase/decrease distances between the centers of the stars on the y-axis. Values greater than
1 increase, values smaller than 1 decrease the distances.
dist.cov
Optional factor to increase/decrease distances between the stars and the covariates labels above the stars. Values greater than
1 increase, values smaller than 1 decrease the distances.
dist.cat
Optional factor to increase/decrease distances between the stars and the category labels around the stars. Values greater than
1 increase, values smaller than 1 decrease the distances.
xpd
If FALSE, all plotting is clipped to the plot region, if TRUE, all plotting is clipped to the figure region,
and if NA, all plotting is clipped to the device region. See also
main
An overall title for the plot. See also plot. col.fill
Color of background of the circle. See also col in par. col.circle
Color of margin of the circle. See also col in par. lwd.circle
Line width of the circle. See also lwd in par. lty.circle
Line type of the circle. See also lty in par. col.global
Color of margin of the global effects circle. See also col in par. Ignored, if globcircle = FALSE. lwd.global
Line width of the global effects circle. See also lwd in par. Ignored, if globcircle = FALSE. lty.global
Line type of the global effects circle. See also lty in par. Ignored, if globcircle = FALSE. cex.labels
Size of labels for covariates placed above the corresponding star. See also cex
in par. cex.cat
Size of labels for categories placed around the corresponding star. See also cex
in par. xlim
Optional specification of the x coordinates ranges. See also xlim in plot.window ylim
Optional specification of the y coordinates ranges. See also ylim in plot.window