Daily DAX : Day 25 POISSON.DIST
This is a statistical DAX Function that returns a scalar value representing the Poisson Distribution. Typical use case is to predict a number of events occurring over a specific time.
Syntax
POISSON.DIST (<x> , <Mean>, <Cummulative>)
Where x is the value you want to (target)
Mean is the average that you know
Cummulative is a boolean to indicate the probability between 0 and x (TRUE) or the FALSE value where ii is only for x occuring
Comments
Post a Comment