Sha256: f267d293edbfd0323b7427987abb1eabef1305782fdab5e821d0fd4207bc6a25

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

module Experian
  class DataDictionary

    # Luxury Car - Domestic
    def self.en_a107_column_name
      'Luxury Car - Domestic'
    end

    def self.en_a107_value_description(key); ''; end

    def self.en_a107_description
      'Auto Purchase Model Luxury Car Domestic Auto Purchase Model Luxury Car Domestic is an Experian model which predicts the likelihood that a living unit will purchase this type of vehicle in the next 6 months. Auto Purchase Models rank living units from 1 to 9 for each auto category using living unit and area level demographics. Field values beginning with 1 indicate the strongest probability. Vehicles examples in the Luxury Car Domestic category include: Cadillac CTS, Cadillac DeVille, Cadillac DTS, Cadillac STS, Lincoln MKS, Lincoln MKZ, and Lincoln Town Car'
    end

    def self.en_a107(key)
      values = {
        '1' => 'Extremely Likely',
        '2' => 'Highly Likely',
        '3' => 'Very Likely',
        '4' => 'More than Likely',
        '5' => 'Likely',
        '6' => 'Somewhat Unlikely',
        '7' => 'Very Unlikely',
        '8' => 'Highly Unlikely',
        '9' => 'Extremely Unlikely'
      }
      key.empty? ? 'Unknown' : values[key]
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
experian-data-dictionary-1.4.4 lib/element_numbers/A/en_A107.rb
experian-data-dictionary-1.4.3 lib/element_numbers/en_A107.rb
experian-data-dictionary-1.4.2 lib/element_numbers/en_A107.rb
experian-data-dictionary-1.4.1 lib/element_numbers/en_A107.rb