search for: backache

Displaying 2 results from an estimated 2 matches for "backache".

2012 Sep 03
2
Adding summary title to table
All, I have: x <- matrix(c(22,3,6,69,9,4,7,81,23,4,22,50),nrow=3,byrow=TRUE) rownames(x) <- c("Cold or flu","Headache","Backache"); colnames(x) <- c("Went to doctor","No response","Did nothing","Self-medicated") x <- t(x) print(x) 1. I'd like to add the title "Nutritional Status" above the column names when displayed with print(x). 2. I'd like to add the...
2012 Sep 03
3
Horizontal grid in background of barplot
All, I have: x <- matrix(c(22,3,6,69,9,4,7,81,23,4,22,50),nrow=3,byrow=TRUE) rownames(x) <- c("Cold or flu","Headache","Backache"); colnames(x) <- c("Went to doctor","No response","Did nothing","Self-medicated") x <- t(x) print(x) barplot(x,beside=TRUE, ylim=c(0,90), xlab="Ailment", ylab="Percent", legend.text=TRUE,...