[R] barplot with multiple columns

Peter Dalgaard p.dalgaard at biostat.ku.dk
Mon Sep 12 16:00:24 CEST 2005


Anette Nørgaard <anette at geoplus.dk> writes:

> I have a large dataset looking like this (as an example):
>  
> doy<-c(178,179,180,181,182,183,184,185,186,187,188)
> s1<-c(0 , 0, 2.4 , 0 , 3.34 , 0 , 5.34 , 0 , 0 , 0 , 6.9)
> s2<-c(0 , 9.72, 0, 10.56 , 2.67 , 0 , 6.45 ,0 , 0 , 9, 3.6)
>  
> dat<-cbind(doy,s1,s2)
>  
> dat
>  
> I need to make a barplot where the two time series s1 and s2 are plottet
> beside each other for each doy. How can I do that?

barplot(rbind(s1,s2), beside=T, names=doy)


-- 
   O__  ---- Peter Dalgaard             Øster Farimagsgade 5, Entr.B
  c/ /'_ --- Dept. of Biostatistics     PO Box 2099, 1014 Cph. K
 (*) \(*) -- University of Copenhagen   Denmark          Ph:  (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk)                  FAX: (+45) 35327907




More information about the R-help mailing list