I\'m trying to plot a time series with ggplot but the data gets offset by two hours for some reason.
> test <- struc
Eipi10's answer above is a good workaround. However, I wanted to avoid hardcoding a time zone setting into my program in at attempt to make it reproducible in any locale. The way to achieve this is very simple, just leave out the tz
parameter:
# Generator function to create 'hh:mm' labels for the x axis
# without explicit 'tz' specification
date_format <- function(format = "%H:%M") {
function(x) format(x, format)
}
The advantage of this method is that it works regardless of the time zone parameter of the original variable and the current locale.
For example if your time values were read in with something like this:as.POSIXct(interval, format = '%H:%M', tz = 'Pacific/Honolulu')
, the graph will still be plotted with the correct X axis labels, even if you're in, say, Zimbabwe.
It looks like scale_x_datetime
is changing the timezone of interval
from your local timezone to UTC. The function below should resolve the problem.
# Source: http://stackoverflow.com/a/11002253/496488
# Put in your local timezone. I've inserted mine just for illustration.
date_format_tz <- function(format = "%H:%M", tz = "America/Los_Angeles") {
function(x) format(x, format, tz=tz)
}
g <- ggplot(interval.steps, aes(interval, mean))
g + geom_line() +
scale_x_datetime(labels = date_format_tz())