ATAN
This page describes the ATAN function in Lenses SQL.
ATAN(numExpr)
Returns the trigonometric arc tangent of an expression.
Available in:
Processors
SQL Studio
✓
✓
Sample code:
USE `kafka`;
SELECT ATAN(pickup_longitude)
FROM nyc-yellow-taxi-trip
LIMIT 1;
Output:
{
"value": {
"ATAN": "-1.5572801259337674"
}
}
Last updated
Was this helpful?