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
You can install the CRAN release of ormPlot from CRAN with:
install.packages("ormPlot")
To install the latest version do:
install.packages("remotes")
::install_github("rix133/ormPlot") remotes
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
<-datadist(educ_data)
ddoptions(datadist="dd")
#create the model
<- orm(educ_3 ~ YOBc +Rural + sex + height_rzs + n_siblings + cran_rzs, data = educ_data)
cran_model
#show simply the summary plot
forestplot(summary(cran_model))
#show the predictions
plot(cran_model, cran_rzs, plot_cols = Rural, plot_rows = sex)