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
dti = pd.date_range('2016-01-01', periods=10)
left, right = dti[:5], dti[5:]
joined = left.join(right, how="outer")
In master joined.freq comes back as None, while in 0.25.3 it was "D". There is some code in DatetimeIndex._wrap_joined_index that suggests to me this was intentional.
Can someone confirm this suspicion cc @jorisvandenbossche ? If so, I've got a branch that restores the old behavior, just need to add tests.
The text was updated successfully, but these errors were encountered:
In master
joined.freq
comes back as None, while in 0.25.3 it was "D". There is some code in DatetimeIndex._wrap_joined_index that suggests to me this was intentional.Can someone confirm this suspicion cc @jorisvandenbossche ? If so, I've got a branch that restores the old behavior, just need to add tests.
The text was updated successfully, but these errors were encountered: