Displaying 1 result from an estimated 1 matches for "laneco2000hh".
2009 Aug 24
2
Creating a simple line graph
...looked
through the documentation (which makes any graphing very complicated to me)
but i havent found what i need. So for:
Sz= c("h1","h2","h3","h4")
Pred=c(34790.0 ,47559.8, 21197.8, 28198.6)
Obs=c(34740 ,48615 ,20420, 26840)
MeanEst2000.Sz=cbind(Sz,Pred)
LaneCo2000HH.Sz =cbind(Sz,Obs)
I would like the x-axis to display the labels(Sz) and the y-axis to be the
vlaues
I am currently using the below (wont work with sample data) which gives me
the proportions of the observed versus the predicted in four different
graphs in histogram format.
panelHist(DataMatri...