# File lib/more/facets/math/atkinson_index.rb, line 11 def self.atkinson_index(array) t = theil_index(array) (t < 0) ? -1 : 1-Math::E**(-t) end