Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 803 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 803 Bytes

difference.plots

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")

mountain-plot-1

Bland Altman Plot

bland_altman(m, r, "plotly")

bland-altman-1