About
difference.plots
is a R package for plotting common difference in measurement plots like Mountain plot, Bland Altman plot and others.
Installation
difference.plots
can be installed via Github:
if (!require(devtools)) {
install.packages('devtools')
}
devtools::install_github('vishesh-shrivastav/difference.plots')
Plot Examples
Mountain Plot
m <- runif(20, 0, 1)
r <- runif(20, 0, 1)
mountain_plot(m, r, "plotly")
Bland Altman Plot
bland_altman(m, r, "plotly")