Bland-altman plots: how to change y axis

677 Views Asked by At

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

There are 1 best solutions below

0
On

I managed to code a bland-altman plot very similar to the one obtain by that package:

library(BlandAltmanLeh)


Diff <- data.frame(Diff1 = runif(50, 250.0, 500.0), Diff2 = runif(50, 200.0, 400.0)) 

ba.stats <- bland.altman.stats(Diff$Diff2, Diff$Diff1)
summary(ba.stats$CI.lines)


ba.stats2 <- as.data.frame(cbind(ba.stats$means, ba.stats$diffs))

BA.plot <- ggExtra::ggMarginal(ggplot(ba.stats2, aes(V1,V2)) + geom_point() + theme_bw() +
                       geom_hline(yintercept = ba.stats$lines, linetype="dashed", size=1)+
                       labs(x = "Means", y = "Difference (S2-S1)")+  ylim(-300, 150) +
                       geom_hline(yintercept = ba.stats$CI.lines, col = "grey", linetype="dashed", size = 0.70), type = "histogram")

print(BA.plot)

enter image description here