search for: micronesia

Displaying 1 result from an estimated 1 matches for "micronesia".

Did you mean: micromedia
2011 Oct 26
1
Using abline in lattice
...ng a relative beginner in R, I apologize for posting the second question within two days. So I want a stacked barchart, which should look like the one produced by this code: Tuvalu <- c(9,3,4,0,3,0,0) Singapor <- c(38,0,0,0,12,19,0) Samoa <- c(26,16,2,0,5,2,0) PNG <- c(56,4,0,5,2,0,56) Micronesia <- c(6,0,0,0,0,0,0) graph4 <- data.frame(rbind(Tuvalu,Singapor,Samoa,PNG,Micronesia)) graph4$country <- c("Tuvalu","Singapore","Samoa","Papua New Guinea","Micronesia") graph4$country <- factor(graph4$country) xyplot(country ~ X1 + X2 + X...