Points.variance

Points.variance()

Returns a nimble object representing the variance along the points axis.

Examples

>>> lst = [[0, 22, 2], [3, 22, 5]]
>>> X = nimble.data(lst)
>>> X.points.variance()
<Matrix 2pt x 1ft
     variance
   ┌─────────
 0 │ 148.000
 1 │ 109.000
>