Skip to content

Commit

Permalink
Kurt function iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Gómez committed Jan 12, 2024
1 parent 74cb599 commit bff087f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pykx/pandas_api/pandas_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def kurt(self, axis: int = 0, numeric_only: bool = False):
'n: count x;'
'm2: sum adjusted_sq: adjusted xexp 2;'
'm4: sum adjusted_sq xexp 2;'
'adj: 3 * xexp[n-1; 2] % (n - 2) * (n - 3);'
'adj: 3 * xexp[n - 1; 2] % (n - 2) * (n - 3);'
'numerator: n * (n + 1) * (n - 1) * m4;'
'denominator: (n - 2) * (n - 3) * m2 xexp 2;'
'(numerator % denominator) - adj}')
Expand Down

0 comments on commit bff087f

Please sign in to comment.