diff --git a/src/pykx/pandas_api/pandas_meta.py b/src/pykx/pandas_api/pandas_meta.py index 7146893..95cec79 100644 --- a/src/pykx/pandas_api/pandas_meta.py +++ b/src/pykx/pandas_api/pandas_meta.py @@ -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)