From 73ef492d2dffe4c881631b6ef2aa0117b0c7663d Mon Sep 17 00:00:00 2001 From: sinhrks Date: Mon, 14 Sep 2015 21:16:01 +0900 Subject: [PATCH] DOC: Update perf doc for 10953 --- doc/source/enhancingperf.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/source/enhancingperf.rst b/doc/source/enhancingperf.rst index 855a459f48cf4..028e6d064a561 100644 --- a/doc/source/enhancingperf.rst +++ b/doc/source/enhancingperf.rst @@ -449,12 +449,15 @@ These operations are supported by :func:`pandas.eval`: - Attribute access, e.g., ``df.a`` - Subscript expressions, e.g., ``df[0]`` - Simple variable evaluation, e.g., ``pd.eval('df')`` (this is not very useful) +- Math functions, `sin`, `cos`, `exp`, `log`, `expm1`, `log1p`, + `sqrt`, `sinh`, `cosh`, `tanh`, `arcsin`, `arccos`, `arctan`, `arccosh`, + `arcsinh`, `arctanh`, `abs` and `arctan2`. This Python syntax is **not** allowed: * Expressions - - Function calls + - Function calls other than math functions. - ``is``/``is not`` operations - ``if`` expressions - ``lambda`` expressions