简体   繁体   中英

calculating kurtosis array[Double] filed in spark scala

how to calculate the kurtosis of array field in spark

spark built-in function is failing array field.

due to data type mismatch: argument 1 requires double type, however, 'SERIES' is of array<double> type.;;

Example in python

 from scipy.stats import kurtosis
 kurtosis([1, 2, 3, 4, 5])
-1.3

i used spark built in function

df.withColumn("newcolumn",when(col("SERIES").isNotNull,kurtosis(columnName))

using Twitter Algebra package i can get kurtosis value.

import com.twitter.algebird._
val y  = List(1, 2, 3, 4, 5)
def getMoments(xs: List[Int]): Moments =
xs.foldLeft(MomentsGroup.zero) { (m, x) =>
  MomentsGroup.plus(m, Moments(x))
}

println(getMoments(y).kurtosis) // -1.3

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM