tan

Generic Description

Computes the tangent of an angle in radians. It is documented separately because numeric transforms change ranking, thresholds, and buckets in ways planner tools must not guess.

Simple example:

RETURN tan(radians(45.0)) AS value

Consumer-Level Explanation

Use it only when the model genuinely needs tangent behavior because it grows sharply near odd right angles. Prefer this function when the transformation is a deliberate part of the model or report, and name the derived value in a WITH stage when it will be reused.

More Detailed Explanation

tan is scalar math, so it is evaluated per row after graph patterns, procedure output, or map projections have produced values. Keep it close to the query when thresholds, ranking, and derived fields need to be auditable and reproducible.

Advanced Example

This example applies tan to a named score component after matching graph data, making the derived metric reviewable before ordering.

MATCH (e:REL)
WITH e, radians(properties(e).weight * 15.0) AS angle
RETURN type(e) AS relationship_type,
       tan(angle) AS slope_component
LIMIT 5

Real Use Cases

Real Limitations And Tradeoffs