I have reviewed the previous question on stack overflow that relate to my ggplot question, but I was unable to find something that clearly helps.
Question: How can I modify the code below to generate separate frequency plots (histograms) for each column (variable) in the data frame using a loop. i.e. ID x each variable?
Data:
example.xlsx
ID a1.sum b3.sum c6.sum d9.sum
April Showers 10 5 15 0
Anita Job 2 3 1 14
Candy Cain 4 7 14 17
Crystal Ball 6 8 16 12
Dot Matricks 15 9 1
Kay Largo 4 10 5 13
Code:
#set work DIR
setwd("C:/A")
library(rJava)
options(java.parameters = "-Xmx2048m") ## memory set to 2 GB
library(xlsx)
#read in .xlsx file and apply encoding UTF-8 (French accents)
DAT <- read.xlsx("example.xlsx", 1, encoding="UTF-8")
#plot data
library(ggplot2)
p <- ggplot(subset(DAT, a1.sum>1), aes(ID, a1.sum, y=a1.sum))
p <- p + geom_bar(stat="identity", fill="blue", color="green")
p <- p + theme(plot.background = element_rect(fill = "white"),
panel.background = element_rect(fill = "white"),
panel.grid.major = element_line(colour = "white",size=0.25),
panel.grid.minor = element_blank())
p <- p + theme(axis.text.x=element_text(size=10,angle=90, hjust=1, face="plain", family="serif"))
p <- p + theme(axis.text.y=element_text(size=10, hjust=1, face="plain", family="serif"))
p <- p + theme(axis.line.x = element_line(color="black", size = 0.50),
axis.line.y = element_line(color="black", size = 0.5))
p
ggsave(filename="a1.png", plot=p)
Output:
Plot of a1.sum Example of plot output
Trying to create a loop to generate the same plot for variables b3, c6, and d9.
I have tried several different approaches using aes_string. The following is how I am trying to setup the loop:
#get variable names that end in .sum
n <- names(DAT[grep("*.sum",names(DAT))])
#loop through variable names
for (i in 1:length(n)){
in_dat <- c(n[i])
...ggplot...
print(p[i]);
}