Skip to content

Commit

Permalink
Changed value function call to q.value()
Browse files Browse the repository at this point in the history
  • Loading branch information
nipsn committed Dec 20, 2023
1 parent 6127e3b commit a1ac6d8
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('value', tab)
tab = q.value(tab)
if numeric_only:
tab = _get_numeric_only_subtable(tab)

Expand Down

0 comments on commit a1ac6d8

Please sign in to comment.