Function
nanstd
(
a, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None
)
Source from the content-addressed store, hash-verified
| 730 | |
| 731 | @derived_from(np) |
| 732 | def nanstd( |
| 733 | a, axis=None, dtype=None, keepdims=False, ddof=0, split_every=None, out=None |
| 734 | ): |
| 735 | result = safe_sqrt( |
| 736 | nanvar( |
| 737 | a, |
| 738 | axis=axis, |
| 739 | dtype=dtype, |
| 740 | keepdims=keepdims, |
| 741 | ddof=ddof, |
| 742 | split_every=split_every, |
| 743 | out=out, |
| 744 | ) |
| 745 | ) |
| 746 | if dtype and dtype != result.dtype: |
| 747 | result = result.astype(dtype) |
| 748 | return result |
| 749 | |
| 750 | |
| 751 | def _arg_combine(data, axis, argfunc, keepdims=False): |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…