ormPlot

CRAN Status Badge Build Status Codecov test coverage

Plotting ordinal regression models from R package rms

The goal of ormPlot is to to extend the plotting capabilities of rms package.

In particular it aims to provide convenient ways of getting ggplot2 plots from orm and lrm models of the rms package.

It provides: * prediction plots of orm models for each dependent variable level together with coefficient intervals. * forest plots of orm/lrm model summaries * data about schoolchildren body measurements and their family details like socioeconomic status and number of siblings

Installation

You can install the CRAN release of ormPlot from CRAN with:

install.packages("ormPlot")

To install the latest version do:

install.packages("remotes")
remotes::install_github("rix133/ormPlot")

Examples

vignette(“ormPlot”) help(“ormPlot”)

See the vigentte and/or help files:

vignette("ormPlot")
help("ormPlot")

To get you started:

#load the libraries
library(rms)
library(ormPlot)

#make the datadist
dd<-datadist(educ_data)
options(datadist="dd")

#create the model
cran_model <- orm(educ_3 ~ YOBc +Rural + sex + height_rzs + n_siblings  + cran_rzs, data = educ_data)

#show simply the summary plot
forestplot(summary(cran_model))

#show the predictions
plot(cran_model, cran_rzs, plot_cols = Rural, plot_rows = sex)