Displaying 1 result from an estimated 1 matches for "day_end".
Did you mean:
  dat_end
  
2000 Jul 08
2
Combining lines and barplot
With a data frame containing daily data, I would like to overlay a barplot of
daily outcomes with the daily high and low.  However, when use the
straightforward
	      
	      barplot(X$"day_end", col="gray", ylim=c(0,120))
	      lines(X$"day_high", col="blue")
	      lines(X$"day_low", col="blue")
the lines do not correspond to the same (daily) x-axis values.  How can I
make them do that?  
Thanks,  Dirk
-- 
According to the lates...