You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dftest = pd.DataFrame({'time1' : ['2019-01-01- 10:10:10.123456Z',
'2019-01-01- 10:10:10.123456Z'],
'time2' : ['ha',
'pandas!!!'],
'time3' :['here we go',
'again']})
dftest
Out[179]:
time1 time2 time3
0 2019-01-01- 10:10:10.123456Z ha here we go
1 2019-01-01- 10:10:10.123456Z pandas!!! again
I am trying to get the minimum timestamp between time1, time2 and time3. Of course, in this example time2 and time3 are not timestamps so (after proper conversion to NaTs) I expect the minimum to be time1 all the time.
Hello there,
Consider this:
I am trying to get the minimum timestamp between
time1
,time2
andtime3
. Of course, in this exampletime2
andtime3
are not timestamps so (after proper conversion to NaTs) I expect the minimum to betime1
all the time.Surprisingly, this fails entirely.
And now:
This looks like a bug. It seems that the errors is coming from the timezone component. What do you think?
Thanks!
The text was updated successfully, but these errors were encountered: