nanfunctions.pyi 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. from typing import List
  2. __all__: List[str]
  3. def nanmin(a, axis=..., out=..., keepdims=...): ...
  4. def nanmax(a, axis=..., out=..., keepdims=...): ...
  5. def nanargmin(a, axis=...): ...
  6. def nanargmax(a, axis=...): ...
  7. def nansum(a, axis=..., dtype=..., out=..., keepdims=...): ...
  8. def nanprod(a, axis=..., dtype=..., out=..., keepdims=...): ...
  9. def nancumsum(a, axis=..., dtype=..., out=...): ...
  10. def nancumprod(a, axis=..., dtype=..., out=...): ...
  11. def nanmean(a, axis=..., dtype=..., out=..., keepdims=...): ...
  12. def nanmedian(
  13. a,
  14. axis=...,
  15. out=...,
  16. overwrite_input=...,
  17. keepdims=...,
  18. ): ...
  19. def nanpercentile(
  20. a,
  21. q,
  22. axis=...,
  23. out=...,
  24. overwrite_input=...,
  25. interpolation=...,
  26. keepdims=...,
  27. ): ...
  28. def nanquantile(
  29. a,
  30. q,
  31. axis=...,
  32. out=...,
  33. overwrite_input=...,
  34. interpolation=...,
  35. keepdims=...,
  36. ): ...
  37. def nanvar(
  38. a,
  39. axis=...,
  40. dtype=...,
  41. out=...,
  42. ddof=...,
  43. keepdims=...,
  44. ): ...
  45. def nanstd(
  46. a,
  47. axis=...,
  48. dtype=...,
  49. out=...,
  50. ddof=...,
  51. keepdims=...,
  52. ): ...