Skip to content

Commit 5f46a28

Browse files
committed
Added log10 to the list of unary functions df.eval can handle
1 parent b78aa8d commit 5f46a28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/computation/ops.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
_unary_math_ops = ('sin', 'cos', 'exp', 'log', 'expm1', 'log1p',
2525
'sqrt', 'sinh', 'cosh', 'tanh', 'arcsin', 'arccos',
26-
'arctan', 'arccosh', 'arcsinh', 'arctanh', 'abs')
26+
'arctan', 'arccosh', 'arcsinh', 'arctanh', 'abs', 'log10')
2727
_binary_math_ops = ('arctan2',)
2828
_mathops = _unary_math_ops + _binary_math_ops
2929

0 commit comments

Comments
 (0)