Sha256: 9197e4ac2c164dc721380903e6766a34f3846fa9db9fc899d92f15da5c24798c
Contents?: true
Size: 1.4 KB
Versions: 4
Compression:
Stored size: 1.4 KB
Contents
module Experian class DataDictionary # ConsumerView Profitability Score def self.en_f031_column_name 'Working Couples' end def self.en_f031_value_description(key); ''; end def self.en_f031_description 'ConsumerView Profitability Score works to identifying households likely to pay their debts and ranks households that allow marketers to target the best prospects based on: profitability approval rates response rates likelihood to perform as prescribed' end def self.en_f031(key) values = { '01' => 'High profitability, high likelihood to perform', '02' => 'High profitability, high likelihood to perform', '03' => 'High profitability, high likelihood to perform', '04' => 'Good profitability, medium likelihood to perform', '05' => 'Good profitability, medium likelihood to perform', '06' => 'Fair profitability, medium likelihood to perform', '07' => 'Fair profitability, medium likelihood to perform', '08' => 'Poor Profitability, unlikely to perform', '09' => 'Poor Profitability, unlikely to perform', '10' => 'Poor Profitability, unlikely to perform', '11' => 'Low Profitability, unlikely to perform', '12' => 'Low Profitability, unlikely to perform', '13' => 'Low Profitability, unlikely to perform' } key.empty? ? 'Unknown' : values[key] end end end
Version data entries
4 entries across 4 versions & 1 rubygems