This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//QlikView Script, Load the distribution of first digits, according to Benford's law, as Data Island: | |
Benford: | |
LOAD FirstDigit, log10(FirstDigit+1) - log10(FirstDigit) as OccurancePct; | |
LOAD RecNo() as FirstDigit AutoGenerate(9); | |
//*********************************************************************************** | |
//Chart | |
//Dynamic Dimension; | |
=ValueList(1,2,3,4,5,6,7,8,9) | |