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
xref #9226
In [11]: from pandas.tseries import offsets In [12]: t1 = offsets.Nano(100) In [13]: t2 = offsets.Micro(1) In [14]: t3 = t1 + t2 --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in () ----> 1 t3 = t1 + t2 /Users/tvyomkesh/pandas/pandas/tseries/offsets.pyc in __add__(self, other) 2025 return type(self)(self.n + other.n) 2026 else: -> 2027 return _delta_to_tick(self.delta + other.delta) 2028 try: 2029 return self.apply(other) TypeError: ufunc add cannot use operands with types dtype('<m8[ns]') and dtype('O')
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
xref #9226
The text was updated successfully, but these errors were encountered: