Displaying 1 result from an estimated 1 matches for "datejonend1".
2010 Aug 04
0
Help with plots
...m trying to plot several time series plots with R, but I can't seem to get the x-axis properly formatted. What I am doing at the moment is:
dates <- seq(as.Date("2007/06/10", "%Y/%m/%d"),
as.Date("2010/03/28", "%Y/%m/%d"), 7)
par(mfrow=c(5,2))
plot(DateJonEnd1, End1Jon, main="Weekly Training at Endurance 1", xlab="Date",
ylim=c(0,350), ylab="Volume at Endurance 1", type="b", xlim=c(13700,14750),
las=1, xaxt="n")
axis.Date(1, End1Jon, dates, format="%m", padj=-1, tcl=-0.5)
axis.Date(1, End1...