Sha256: 384094f490a56d1abcbb359ddcb7deeee4c7d06647a0611dcf640a24fceb8db8

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

module Experian
  class DataDictionary
    # Working Couples
    def self.en_d200_column_name
      'Working Couples'
    end

    def self.en_d200_value_description(_key)
      ''
    end

    def self.en_d200_description
      'Working Couples is a model which works to predict Living Units that are likely to have two incomes. The value appended of 2 identifies living units that are married between the ages of 19-80 and are likely to have two incomes. The value of 1 identifies living units that are either married with only 1 income, living units where there is not known data to identify if the couple is married, or living units that only have 1 adult between the ages 19-80. The value of 0 represents the individuals within the Living Unit are over the age of 80 and are not eligible to be scored.'
    end

    def self.en_d200(key)
      values = {
        '0' => 'Not eligible',
        '1' => 'Married with likely 1 income or not married',
        '2' => 'Married with likely dual incomes in living unit'
      }
      key.empty? ? 'Unknown' : values[key]
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
experian-data-dictionary-1.4.5 lib/element_numbers/D/en_D200.rb