search for: dsr2

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

Did you mean: ddr2
2008 Feb 20
4
plotting every ith data point?
...d even if I specify type="b," the output ends up looking like just a series of crowded points. For example, if you try making the plot below, you will see how crowded two lines look without error bars: > example.df<-data.frame(StartDate=(94:157), DSR1=seq(0.4, 0.8, length.out=64), DSR2=seq(0.3, 0.9, length.out=64)) > plot(example.df$StartDate, example.df$DSR1, type="b", ylim=c(0.3,0.9)) > points(example.df$StartDate, example.df$DSR2, type="b", pch=3) Any ideas for an elegant solution to my dilemma? Thanks in advance for any help. cheers, Jessi Brown...