We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
New to this, sorry if I'm just missing something...
import numpy as np import pandas as pd d1 = pd.date_range('12/31/1990', '12/31/1999', freq='A-DEC') d2 = pd.date_range('12/31/2000', '12/31/2009', freq='A-DEC') s1 = pd.Series(np.random.randn(10), d1) s2 = pd.Series(np.random.randn(10), d2) # works pd.concat([s1,s2]) s1 = s1.to_period() s2 = s2.to_period() # drops index pd.concat([s1,s2]) # workaround pd.concat([s1.to_timestamp(), s2.to_timestamp()]).to_period('A-DEC')
The text was updated successfully, but these errors were encountered:
f953727
Nope. This is a bug-- just pushed a fix. Thanks for the report
Sorry, something went wrong.
No branches or pull requests
New to this, sorry if I'm just missing something...
The text was updated successfully, but these errors were encountered: