Does anyone know how to change the ylim on Bland-Altman plots when using this code? I would like to use the code below for the bland-altman plots because I like the way they look and how easy it is to add the 95% CIs.
library(BlandAltmanLeh)
set.seed(1)
a <- rnorm(40,30,10)
b <- 1.01*a + rnorm(40)
x <- bland.altman.plot(a,b, xlab="mean", ylab="difference")
I managed to code a bland-altman plot very similar to the one obtain by that package: