Skip to content
Advertisement

Change in pandas Series.tz_convert behaviour in v1.X (or thereabouts)?

I am seeing a difference in the behaviour of Series.tz_convert between pandas 0.20.1 and 1.2.4, but I don’t understand the cause and cannot find where this change is documented, if it is intentional.

Here is some test code:

JavaScript

Under pandas 0.20.1 it gives this output:

JavaScript

But under 1.2.4 we get this:

JavaScript

Looks like under 1.2.4 the Series.tz_convert routine just doesn’t do anything? But surely that can’t be right? Any help understanding this behaviour would be much appreciated.

Advertisement

Answer

Please utilize the below code:

JavaScript

if you look at github code, the code is

JavaScript

so the code recommended in the GitHub issue DataFrame/Series.tz_convert does not modifies original data with copy=False is not part of the latest version. recommended code was:

JavaScript

I think this is aligned with the memory issue which was observed with inplace=True in pandas. so avoiding inplace=True across the library.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement