ln()
Table of Contents
Examples
The following example calculates the natural logarithm for each row column’s value and then turns it into a graph with stats.
| makeresults count=100
| eval row=1
| accum row
| eval naturalLogarithm=ln(row)
| stats count by row naturalLogarithm