Created
May 17, 2013 13:32
-
-
Save jmmateoshggm/5599056 to your computer and use it in GitHub Desktop.
Bland-Altman plot, R code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Bland-Altman plot R function. | |
# Author: [email protected] | |
baplot <- function(m1, m2, ...) { | |
# m1 and m2 are the measurements | |
means <- (m1 + m2) / 2 | |
diffs <- m1 - m2 | |
mdiff <- mean(diffs) | |
sddiff <- sd(diffs) | |
# Compute the figure limits | |
ylimh <- mdiff + 3 * sddiff | |
yliml <- mdiff - 3 * sddiff | |
# Plot data | |
plot(diffs ~ means, xlab = "Average values", | |
ylab = "Differences", ylim = c(yliml, ylimh), ...) | |
abline(h = mdiff) # Center line | |
# Standard deviations lines | |
abline(h = mdiff + 1.96 * sddiff, lty = 2) | |
abline(h = mdiff - 1.96 * sddiff, lty = 2) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment