kotlin-numpy / org.jetbrains.numkt.statistics / nanVar

nanVar

fun <T : Number> nanVar(a: KtNDArray<T>, ddof: Int = 0): Double (source)

Compute the variance along the specified axis, while ignoring NaNs.

fun <T : Number> nanVar(a: KtNDArray<T>, axis: Int, ddof: Int = 0): KtNDArray<Double> (source)