Skip to content

Commit

Permalink
Merge pull request #8 from mishpat/patch-1
Browse files Browse the repository at this point in the history
Change statistical description of standard error
  • Loading branch information
abstractqqq authored Nov 10, 2023
2 parents 080fd02 + 28686e7 commit bcd1aa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/polars_ds/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self, expr: pl.Expr):

def std_err(self, ddof: int = 1) -> pl.Expr:
"""
Returns the standard error of the variable.
Estimates the standard error for the mean of the expression.
"""
return self._expr.std(ddof=ddof) / self._expr.count().sqrt()

Expand Down

0 comments on commit bcd1aa9

Please sign in to comment.