March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Simply stated, Kurtosis is a measure of the degree to which a given distribution is more or less "peaked" relative to the normal distribution. This is an important measure that can have implications on what sorts of statistical methods are appropriate to use on the sample distribution.
You can read more about Kurtosis at these links:
The presented Quick Measure has three measures, Sample Kurtosis, Excess Kurtosis and Kurtosis Type:
Sample Kurtosis = VAR __mean = AVERAGEX(ALL('Data'),[Values]) VAR __stddev = STDEVX.P(ALL('Data'),[Values]) VAR __n = COUNTROWS(ALL('Data')) VAR __table = ADDCOLUMNS('Data',"__skew",POWER(([Values]-__mean),4)) VAR __sum = SUMX(__table,[__skew]) RETURN DIVIDE(__sum,POWER(__stddev,4),0) * DIVIDE(1,__n,0)
Excess Kurtosis = [Sample Kurtosis] - 3
Kurtosis Type = SWITCH(TRUE(), [Excess Kurtosis]>0,"Leptokurtic", [Excess Kurtosis]<0,"Platykurtic", "Mesokurtic" )
eyJrIjoiYTdhNWI4YjEtOGQ1OS00OTM1LTgyM2UtNWQ0Njc3YmVkZWFkIiwidCI6IjRhMDQyNzQzLTM3M2EtNDNkMi04MjdiLTAwM2Y0YzdiYTFlNSIsImMiOjN9