Skip to content

pd.Series.sem

pandas.Series.sem(axis=None, skipna=None, level=None, ddof=1, numeric_only=None)

Supported Arguments

argument datatypes
skipna Boolean
ddof Integer

Note

  • Series type must be numeric
  • Bodo does not accept any additional arguments to pass to the function

Example Usage

>>> @bodo.jit
... def f(S):
...     return S.sem()
>>> S = pd.Series(np.arange(100)) % 7
>>> f(S)
0.20219752318917852