Skip to content

Commit

Permalink
Applied comment for std function
Browse files Browse the repository at this point in the history
  • Loading branch information
nipsn committed Dec 20, 2023
1 parent 348917b commit 6127e3b
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 @@ -158,7 +158,7 @@ def mean(self, axis: int = 0, numeric_only: bool = False):
def std(self, axis: int = 0, ddof: int = 1, numeric_only: bool = False):
tab = self
if 'Keyed' in str(type(tab)):
tab = q('{(keys x) _ 0!x}', tab)
tab = q('value', tab)
if numeric_only:
tab = _get_numeric_only_subtable(tab)

Expand Down

0 comments on commit 6127e3b

Please sign in to comment.