Displaying 1 result from an estimated 1 matches for "vhachagilbeg".
2010 Jul 22
1
Bar Plot Bars "Bleed" off Plotting Area
...================
options(repos="http://lib.stat.cmu.edu/R/CRAN/")
install.packages("plotrix", dependencies=TRUE)
update.packages()
require(plotrix)
## DATA
## April September
## 1 46.6 50.0
## 2 43.3 53.3
w <- read.csv("C:/Documents and
Settings/vhachagilbeg/Desktop/pope/women.csv",
header=TRUE)
attach(w)
names(w)
w
barplot(as.matrix(w),
ylab="Percentage", ylim=c(40, 55), yaxt="n",
beside=TRUE, col=(rainbow(2)))
text(x=1.5,y=48, "46.6%")
text(x=2.5,y=44.3, "43.3%")
text(x=4....