-
Notifications
You must be signed in to change notification settings - Fork 14.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error when using time since > 28 days ago and time grain different than time column #597
Comments
Looks like this: pandas-dev/pandas#7139 |
Can you share the full stack trace? Otherwise it's hard to know where the error is coming from... |
So it looks like i have data with mixed timezones, but from a quick look my datetimes are in the very same format:
|
Same happens on pandas 0.18.1 UPDATE: hacked pandas git master to show a bit more info and i get this:
Given the time span and the hour difference it could be the Daylight Saving Time change. |
I've tried to poke a bit at this but i can't see a generic solution here:
Any other ideas or a clue? |
I overlooked the fact that the field i use as time column is a DATE so it has not time or timezone. So it's something inside caravel / pandas that is upgrading this to a Timestamp. Any hint on where to look? UPDATE: it looks like using a timestamp field avoid the issue. Fixes my immediate issue (yay!) but can we do something to avoid the pain to the next person? |
I'm also receiving this exception on an attribute stored as a timestamp with time zone. |
@kurtbradd do you get "ValueError: Array must be all same time zone"? If so are you using postgresql? If not that's probably a different issue :) |
@xrmx i get the error you mentioned and i'm using postgresql |
I'm not sure if |
my timestamps have timezone different than utc |
I get this exception:
while on a Time series bar chart and using time since > 28 days ago and time grain different than time column. Any clue on what could be wrong?
The text was updated successfully, but these errors were encountered: