Skip to content
Prev 374526 / 398513 Next

Adding Year-Month-Day to X axis

Hi Greg,
This is because both plots have equally spaced x values. To see the
difference, try this:

plot (x_yyyymmdd, y_duration, type="l", xaxt="n", yaxt="n",
ylim=range(240,480), xlab="", ylab="", col="blue")
axis(1)
plot (            y_duration, type="l", xaxt="n", yaxt="n",
ylim=range(240,480), xlab="", ylab="", col="red" )
axis(1)

Jim
On Wed, May 9, 2018 at 9:00 AM, Gregory Coats <gregcoats at me.com> wrote: