-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
BUG: Allow DatetimeIndex for scipy interpolate #5977
New issue
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
Conversation
you could try |
BUG: Allow DatetimeIndex for scipy interpolate
should this be posted upstream (scipy) too ? |
I wasn't sure about that. I looked and didn't see any existing issues about interpolation with datetime arrays. On Jan 16, 2014, at 3:09 PM, "Andy Hayden" <[email protected]mailto:[email protected]> wrote: should this be posted upstream (scipy) too ? — |
this is pretty standard to use only the base types (e.g. float/int64) for most routines (in scipy/numpy), unless they are specific datetime like routines. Pandas just handles these things in a nicer way. |
I believe this introduced an error when compiling the docs:
|
@TomAugspurger ahh...instead of using |
Closes #5975
Is there a better way to check for a DatetimeIndex than with an
isinstance()
?