search for: bpress

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

Did you mean: press
2004 Apr 11
1
question on plot dates
I am trying to plot "time" variable (the time is recoded for three days at 5 minutes interval in the format of 2001-05-14 13:45:00) VS. blood pressure. My code is the following: plot(time, bloodpressure,xlab="Time",ylab="bPress",main="Time VS Blood Pressure", type="l", xaxt="n") r <- as.POSIXct(round(range(Time), "days")) axis.POSIXct(1, at=seq(r[1], r[2], by="day"), format="%d-%b") However the plot only shows three values 14-Apr, 15-Apr and 16 Apr, I...