We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm going to do #4196 (multiple quantiles)
But this came up:
you get a result from _quantile. Then it checks this:
result
if not np.isscalar and com.is_timedelta64_dtype(result):
Should np.isscalar be called on result?
np.isscalar
Currently that if block is never entered since not np.isscaller is False
if
not np.isscaller
The text was updated successfully, but these errors were encountered:
Sorry, I guess I was on an old branch. Nevermind.
Sorry, something went wrong.
No branches or pull requests
I'm going to do #4196 (multiple quantiles)
But this came up:
you get a
result
from _quantile. Then it checks this:Should
np.isscalar
be called on result?Currently that
if
block is never entered sincenot np.isscaller
is FalseThe text was updated successfully, but these errors were encountered: