MCPcopy
hub / github.com/pandas-dev/pandas / pyarrow_meth

Method pyarrow_meth

pandas/core/arrays/arrow/array.py:2043–2046  ·  view source on GitHub ↗
(data, skip_nulls, **kwargs)

Source from the content-addressed store, hash-verified

2041 if name == "sem":
2042
2043 def pyarrow_meth(data, skip_nulls, **kwargs):
2044 numerator = pc.stddev(data, skip_nulls=skip_nulls, **kwargs)
2045 denominator = pc.sqrt_checked(pc.count(self._pa_array))
2046 return pc.divide_checked(numerator, denominator)
2047
2048 elif name == "sum" and (
2049 pa.types.is_string(pa_type) or pa.types.is_large_string(pa_type)

Callers

nothing calls this directly

Calls 9

check_below_min_countFunction · 0.90
scalarMethod · 0.80
castMethod · 0.80
stringMethod · 0.80
countMethod · 0.45
to_numpyMethod · 0.45
filterMethod · 0.45
invertMethod · 0.45
from_arraysMethod · 0.45

Tested by

no test coverage detected