Last active
August 29, 2015 14:17
-
-
Save druedin/c0eee59df7eadcde512c to your computer and use it in GitHub Desktop.
Shading Coefficient Plots in R
This file contains 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
library(denstrip) | |
fade <- function(x, labels=names(coef(x)), expo=FALSE, xlab="", ylab="", bty="n", ...) { | |
# argument: a regression, additional arguments passed on to plot() and text() | |
coe <- summary(x)$coefficients[,1] # extract coefficients | |
cse <- summary(x)$coefficients[,2] # standard errors | |
len <- length(coe) # how many coefficients (without intercept) | |
if(expo == TRUE) { # exponential form | |
coe <- exp(coe) | |
cse <- exp(cse) | |
} | |
ran <- c(min(coe)- 3*max(cse), max(coe)+3*max(cse)) # range of values | |
plot(0, ylim=c(1.5,len+0.5), xlim=ran, xlab=xlab, ylab=ylab, bty=bty, type="n", ..., axes=FALSE) | |
# title, xlab, ylab, etc. can be used here. | |
for(i in 2:len) { | |
dens <- rnorm(mean=coe[i], sd=cse[i], n=1000) | |
denstrip(dens, at=i) # passing arguments conflicts with plot() | |
text(ran[1],i, labels[i], adj = c(0,0), ...) # adj to left-align | |
# cex, col can be used here | |
} | |
axis(1) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment