Guillaume Chaslot guillaume.chaslot@data.gouv.fr

Tax Legislation Reform

The tax and benefit legislation is complex. This tool helps to make reform that returns a complete and simplified tax and benefit system.

How it works:

  1. Define your concepts (e.g., 'nb_enfants', 'age', 'parent isolé') and budget (e.g.: cost less than 2 millions euros)
  2. The machine learning algorithm helps you adjust the parameters of your reform to approximate the current legislation and fit your budget
  3. From the biggest discrepencies with the current legislation, you can improve your concepts (or the legislation)
  4. Repeat until you reach a legislation that matches your own goals. The algorithm takes care of minimizing your budget and maximizing the similarity to current legislation.

Beta version limitations:

For this test, we only take a population of people from all ages, who have 0 to 5 children, no salary, married, veuf, paces, divorces or celibataires, and simulate the "aides sociales"

Current Results:

Within a few minutes, we got a tax reform for "aides sociales" for people with no salary that is:

  • 6 lines long
  • similar to the existing in average at more than 95%

Imports


In [1]:
import copy
import random

import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import qgrid

from openfisca_reformator.econometrics import gini, draw_ginis
from openfisca_reformator.population import Population
from openfisca_reformator.reform import Reform
from openfisca_reformator.utils import show_histogram, percent_diff, scatter_plot, multi_scatter

qgrid.nbinstall(overwrite=True)

%matplotlib inline

Which population do you want to use?

For instance we want to use the 'revdisp' computed by OpenFisca, on a population that represents 0.21% of the french population.


In [2]:
population = Population.from_openfisca_files(
    base_name='1aj-1bj-f-2000',
    variables_loaded_from_results=['revdisp'],
    nb_individuals=2863.0,
    nb_individuals_ref= 62000000 * 93 / 100,
    )

Or from csv with another simulated population:


In [3]:
population = Population.from_csv(
    base_name = 'population_simulated_irpp_fam6310.csv',
    nb_individuals = 6380.0,
    nb_individuals_ref = 62000000 * 93 / 100,
)

What are the computed variables you want to use for your reform?

You can add concepts like the number of children, age, family situation, etc...


In [6]:
def age_dec_1(family):
    return age_from_box(family, '0DA')

def age_dec_2(family):
    if '0DB' in family:
        return age_from_box(family, '0DB')
    return None

def if_married(family):
    return 'M' in family

def if_pacse(family):
    return 'O' in family

def if_veuf(family):
    return 'V' in family

def if_divorce(family):
    return 'D' in family

def if_two_people(family):
    return '0DB' in family

def revenu_1(family):
    return family['1AJ']

def taxable_variable(family):
    if '1BJ' in family:
        return family['1AJ'] + family['1BJ']
    else:
        return family['1AJ']

def revenu_2(family):
    if '1BJ' in family:
        return family['1BJ']
    return False

def age_from_box(family, birthdate_box):
    return 2014 - family.get(birthdate_box, 2014)

def if_both_declarant_parent_below_24(family):
    if age_dec_1(family) >= 24:
        return False
    if '0DB' in family and age_dec_2(family) >= 24:
        return False
    if 'F' not in family or family['F'] == 0:
        return False
    return True

def per_child(family):
    if 'F' in family:
        return family['F']
    else:
        return None

def per_child_parent_isole(family):
    if '0DB' in family:
        return None
    if 'F' in family:
        return family['F']
    else:
        return None

def if_parent_isole_moins_20k(family):
    return 'F' in family and family['F'] >= 1 and ('0DB' not in family) and family['1AJ'] < 20000

def if_enfant_unique(family):
    return 'F' in family and family['F'] == 1

def if_deux_enfants_ou_plus(family):
    return 'F' in family and family['F'] >= 2

def per_child_after_2(family):
    if 'F' in family and family['F'] >= 2:
        return family['F'] - 2
    return None

def if_declarant_above_65(family):
    return age_from_box(family, '0DA') >= 65

def if_codeclarant_above_65(family):
    return '0DB' in family and age_from_box(family, '0DB') > 65

def per_declarant_above_65(family):
    return int(age_from_box(family, '0DB') >= 65) + int(age_from_box(family, '0DA') >= 65)

def per_declarant_above_24(family):
    return int(age_from_box(family, '0DB') >= 24) + int(age_from_box(family, '0DA') >= 24)

def if_one_declarant_above_24(family):
    return (age_from_box(family, '0DA') >= 24 or ('0DB' in family and age_from_box(family, '0DB') >= 24))

def if_one_declarant_above_24_or_has_children(family):
    return (age_from_box(family, '0DA') >= 24 or ('0DB' in family and age_from_box(family, '0DB') >= 24) or 
           ('F' in family and family['F'] >= 1))

def if_earns_10k(family):
    return taxable_variable(family) > 10000

def if_earns_30k(family):
    return taxable_variable(family) > 30000

def if_earns_40k(family):
    return taxable_variable(family) > 40000

def anyone(family):
    return True

population.declare_computed_variables({
    'anyone': anyone,
    'age_dec_1': age_dec_1,
    'age_dec_2': age_dec_2,
    'taxable_variable': taxable_variable,
    'revenu_1': revenu_1,
    'revenu_2': revenu_2,
    'per_child': per_child,
    'per_child_parent_isole': per_child_parent_isole,
    'per_declarant_above_24': per_declarant_above_24,
    'per_declarant_above_65': per_declarant_above_65,
    'per_child_after_2': per_child_after_2,
    'if_earns_10k': if_earns_10k,
    'if_earns_30k': if_earns_30k,
    'if_earns_40k': if_earns_40k,
    'if_one_declarant_above_24': if_one_declarant_above_24,
    'if_one_declarant_above_24_or_has_children': if_one_declarant_above_24_or_has_children,
    'if_both_declarant_parent_below_24': if_both_declarant_parent_below_24,
    'if_declarant_above_65': if_declarant_above_65,
    'if_codeclarant_above_65': if_codeclarant_above_65,
    'if_enfant_unique': if_enfant_unique,
    'if_deux_enfants_ou_plus': if_deux_enfants_ou_plus,
    'if_two_people': if_two_people,
    'if_parent_isole_moins_20k': if_parent_isole_moins_20k,
    })



population.print_population_from_cerfa_values()


---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
<ipython-input-6-ab035316cd28> in <module>()
    130     'if_deux_enfants_ou_plus': if_deux_enfants_ou_plus,
    131     'if_two_people': if_two_people,
--> 132     'if_parent_isole_moins_20k': if_parent_isole_moins_20k,
    133     })
    134 

/Users/Guillaume/Documents/openfisca/reformator/openfisca_reformator/population.py in declare_computed_variables(self, variables_to_functions)
    111     def declare_computed_variables(self, variables_to_functions):
    112         for var in variables_to_functions:
--> 113             self.declare_computed_variable(var, variables_to_functions[var])
    114 
    115     def declare_computed_variable(self, variable, function):

/Users/Guillaume/Documents/openfisca/reformator/openfisca_reformator/population.py in declare_computed_variable(self, variable, function)
    115     def declare_computed_variable(self, variable, function):
    116         for i in range(len(self._raw_population)):
--> 117             result = function(self._raw_population[i])
    118             if result is not None and result is not False:
    119                 self._population[i][variable] = float(result)

<ipython-input-6-ab035316cd28> in revenu_1(family)
     23 
     24 def revenu_1(family):
---> 25     return family['1AJ']
     26 
     27 def taxable_variable(family):

KeyError: '1AJ'

In [11]:
population._population


Out[11]:
[{'Unnamed: 0': 0,
  'Unnamed: 0.1': 0,
  'activite': True,
  'activite_conj': False,
  'age': 22,
  'age_conj': 21.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': True,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 4190.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 4190.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 1,
  'Unnamed: 0.1': 1,
  'activite': True,
  'activite_conj': False,
  'age': 23,
  'age_conj': 22.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9749.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9749.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 2,
  'Unnamed: 0.1': 2,
  'activite': True,
  'activite_conj': False,
  'age': 25,
  'age_conj': 23.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': True,
  'etudes_conj': True,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 13509.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 3,
  'Unnamed: 0.1': 3,
  'activite': True,
  'activite_conj': False,
  'age': 25,
  'age_conj': 24.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 13509.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 4,
  'Unnamed: 0.1': 4,
  'activite': True,
  'activite_conj': True,
  'age': 25,
  'age_conj': 25.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 21487.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34996.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 5,
  'Unnamed: 0.1': 5,
  'activite': True,
  'activite_conj': True,
  'age': 25,
  'age_conj': 25.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 31991.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45500.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 6,
  'Unnamed: 0.1': 6,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 26.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 19563.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36027.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 7,
  'Unnamed: 0.1': 7,
  'activite': False,
  'activite_conj': False,
  'age': 28,
  'age_conj': 26.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 8,
  'Unnamed: 0.1': 8,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 26.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 17479.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17479.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 9,
  'Unnamed: 0.1': 9,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 27.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16464.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 10,
  'Unnamed: 0.1': 10,
  'activite': True,
  'activite_conj': True,
  'age': 26,
  'age_conj': 27.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 15991.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 15991.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 11,
  'Unnamed: 0.1': 11,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 27.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 14667.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 14667.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 12,
  'Unnamed: 0.1': 12,
  'activite': True,
  'activite_conj': True,
  'age': 23,
  'age_conj': 27.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9749.0,
  'salaire_conj': 20749.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30498.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 13,
  'Unnamed: 0.1': 13,
  'activite': True,
  'activite_conj': True,
  'age': 25,
  'age_conj': 27.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 18611.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32120.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 14,
  'Unnamed: 0.1': 14,
  'activite': True,
  'activite_conj': True,
  'age': 26,
  'age_conj': 27.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 15991.0,
  'salaire_conj': 19728.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35719.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 15,
  'Unnamed: 0.1': 15,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 27.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26407.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26407.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 16,
  'Unnamed: 0.1': 16,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 27.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 21008.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21008.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 17,
  'Unnamed: 0.1': 17,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 27.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 23581.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43615.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 18,
  'Unnamed: 0.1': 18,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 27.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18165.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18165.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 19,
  'Unnamed: 0.1': 19,
  'activite': True,
  'activite_conj': False,
  'age': 29,
  'age_conj': 28.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20034.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 20,
  'Unnamed: 0.1': 20,
  'activite': False,
  'activite_conj': False,
  'age': 28,
  'age_conj': 28.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 21,
  'Unnamed: 0.1': 21,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 28.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20660.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20660.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 22,
  'Unnamed: 0.1': 22,
  'activite': True,
  'activite_conj': True,
  'age': 25,
  'age_conj': 28.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 20481.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33990.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 23,
  'Unnamed: 0.1': 23,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 28.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 21796.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38260.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 24,
  'Unnamed: 0.1': 24,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 22226.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22226.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 25,
  'Unnamed: 0.1': 25,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 17008.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 54998.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 26,
  'Unnamed: 0.1': 26,
  'activite': True,
  'activite_conj': False,
  'age': 25,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 13509.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 27,
  'Unnamed: 0.1': 27,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 21529.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41563.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 28,
  'Unnamed: 0.1': 28,
  'activite': True,
  'activite_conj': True,
  'age': 26,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 15991.0,
  'salaire_conj': 8792.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24783.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 29,
  'Unnamed: 0.1': 29,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16464.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 30,
  'Unnamed: 0.1': 30,
  'activite': True,
  'activite_conj': True,
  'age': 25,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 15475.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28984.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 31,
  'Unnamed: 0.1': 31,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 23950.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43984.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 32,
  'Unnamed: 0.1': 32,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': -2632.09790039,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 23273.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 61263.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 33,
  'Unnamed: 0.1': 33,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 11642.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49632.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 34,
  'Unnamed: 0.1': 34,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 29.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 55527.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 76377.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 35,
  'Unnamed: 0.1': 35,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 30669.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30669.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 36,
  'Unnamed: 0.1': 36,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 18699.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38750.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 37,
  'Unnamed: 0.1': 37,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 28298.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34244.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 38,
  'Unnamed: 0.1': 38,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 24010.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26404.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 39,
  'Unnamed: 0.1': 39,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 4007.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24041.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 40,
  'Unnamed: 0.1': 40,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 14809.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 14809.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 41,
  'Unnamed: 0.1': 41,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 5627.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26477.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 42,
  'Unnamed: 0.1': 42,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 21351.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53497.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 43,
  'Unnamed: 0.1': 43,
  'activite': True,
  'activite_conj': False,
  'age': 29,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20034.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 44,
  'Unnamed: 0.1': 44,
  'activite': True,
  'activite_conj': True,
  'age': 23,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9749.0,
  'salaire_conj': 26111.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35860.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 45,
  'Unnamed: 0.1': 45,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 12033.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12033.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 46,
  'Unnamed: 0.1': 46,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 25553.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42017.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 47,
  'Unnamed: 0.1': 47,
  'activite': True,
  'activite_conj': False,
  'age': 30,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': -2632.09790039,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37990.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 48,
  'Unnamed: 0.1': 48,
  'activite': True,
  'activite_conj': True,
  'age': 25,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 29072.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42581.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 49,
  'Unnamed: 0.1': 49,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 30.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 40586.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46532.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 50,
  'Unnamed: 0.1': 50,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 23240.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44090.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 51,
  'Unnamed: 0.1': 51,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 21696.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53842.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 52,
  'Unnamed: 0.1': 52,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 14338.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35188.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 53,
  'Unnamed: 0.1': 53,
  'activite': True,
  'activite_conj': True,
  'age': 26,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 15991.0,
  'salaire_conj': 18534.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34525.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 54,
  'Unnamed: 0.1': 54,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 19202.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40052.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 55,
  'Unnamed: 0.1': 55,
  'activite': True,
  'activite_conj': True,
  'age': 22,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 4190.0,
  'salaire_conj': 23396.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 27586.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 56,
  'Unnamed: 0.1': 56,
  'activite': True,
  'activite_conj': False,
  'age': 37,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 57,
  'Unnamed: 0.1': 57,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 21507.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 27453.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 58,
  'Unnamed: 0.1': 58,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 19067.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39917.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 59,
  'Unnamed: 0.1': 59,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 135485.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 139194.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 60,
  'Unnamed: 0.1': 60,
  'activite': False,
  'activite_conj': False,
  'age': 28,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 61,
  'Unnamed: 0.1': 61,
  'activite': True,
  'activite_conj': False,
  'age': 22,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 4190.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 4190.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 62,
  'Unnamed: 0.1': 62,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 21012.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21012.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 63,
  'Unnamed: 0.1': 63,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 36018.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 68164.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 64,
  'Unnamed: 0.1': 64,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 31.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 58288.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 74752.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 65,
  'Unnamed: 0.1': 65,
  'activite': True,
  'activite_conj': True,
  'age': 26,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 15991.0,
  'salaire_conj': 19988.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35979.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 66,
  'Unnamed: 0.1': 66,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 25660.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25660.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 67,
  'Unnamed: 0.1': 67,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20652.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20652.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 68,
  'Unnamed: 0.1': 68,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 14986.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31450.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 69,
  'Unnamed: 0.1': 69,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 31122.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37068.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 70,
  'Unnamed: 0.1': 70,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 21867.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42717.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 71,
  'Unnamed: 0.1': 71,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 17070.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17070.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 72,
  'Unnamed: 0.1': 72,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 25200.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41664.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 73,
  'Unnamed: 0.1': 73,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 28330.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28330.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 74,
  'Unnamed: 0.1': 74,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 22081.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22081.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 75,
  'Unnamed: 0.1': 75,
  'activite': True,
  'activite_conj': False,
  'age': 32,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 5946.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 76,
  'Unnamed: 0.1': 76,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 27436.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 65426.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 77,
  'Unnamed: 0.1': 77,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 5946.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 78,
  'Unnamed: 0.1': 78,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 19072.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19072.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 79,
  'Unnamed: 0.1': 79,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 19948.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19948.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 80,
  'Unnamed: 0.1': 80,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 43649.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 65395.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 81,
  'Unnamed: 0.1': 81,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 14108.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20054.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 82,
  'Unnamed: 0.1': 82,
  'activite': False,
  'activite_conj': False,
  'age': 33,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 83,
  'Unnamed: 0.1': 83,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 32.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18794.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18794.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 84,
  'Unnamed: 0.1': 84,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 18156.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34620.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 85,
  'Unnamed: 0.1': 85,
  'activite': True,
  'activite_conj': False,
  'age': 31,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20850.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 86,
  'Unnamed: 0.1': 86,
  'activite': True,
  'activite_conj': False,
  'age': 32,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 5946.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 87,
  'Unnamed: 0.1': 87,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 27220.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 27220.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 88,
  'Unnamed: 0.1': 88,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 89,
  'Unnamed: 0.1': 89,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 25881.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45915.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 90,
  'Unnamed: 0.1': 90,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 38083.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 76073.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 91,
  'Unnamed: 0.1': 91,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 30145.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30145.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 92,
  'Unnamed: 0.1': 92,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 19171.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19171.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 93,
  'Unnamed: 0.1': 93,
  'activite': True,
  'activite_conj': False,
  'age': 22,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 4190.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 4190.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 94,
  'Unnamed: 0.1': 94,
  'activite': False,
  'activite_conj': False,
  'age': 28,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 95,
  'Unnamed: 0.1': 95,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 14646.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34680.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 96,
  'Unnamed: 0.1': 96,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16473.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 97,
  'Unnamed: 0.1': 97,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 2812.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22846.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 98,
  'Unnamed: 0.1': 98,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 30462.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36408.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 99,
  'Unnamed: 0.1': 99,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 40771.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40771.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 100,
  'Unnamed: 0.1': 100,
  'activite': False,
  'activite_conj': False,
  'age': 28,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 101,
  'Unnamed: 0.1': 101,
  'activite': True,
  'activite_conj': True,
  'age': 23,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9749.0,
  'salaire_conj': 17996.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 27745.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 102,
  'Unnamed: 0.1': 102,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 103,
  'Unnamed: 0.1': 103,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 33.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 24561.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24561.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 104,
  'Unnamed: 0.1': 104,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 47253.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47253.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 105,
  'Unnamed: 0.1': 105,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 62836.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 62836.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 106,
  'Unnamed: 0.1': 106,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 41885.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47831.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 107,
  'Unnamed: 0.1': 107,
  'activite': False,
  'activite_conj': False,
  'age': 33,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 108,
  'Unnamed: 0.1': 108,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 23909.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 56055.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 109,
  'Unnamed: 0.1': 109,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 33364.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33364.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 110,
  'Unnamed: 0.1': 110,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': -198.21673584,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 16867.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37717.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 111,
  'Unnamed: 0.1': 111,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18932.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18932.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 112,
  'Unnamed: 0.1': 112,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 28924.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28924.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 113,
  'Unnamed: 0.1': 113,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 20250.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 52396.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 114,
  'Unnamed: 0.1': 114,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 27967.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 48817.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 115,
  'Unnamed: 0.1': 115,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 57449.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 63395.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 116,
  'Unnamed: 0.1': 116,
  'activite': True,
  'activite_conj': False,
  'age': 35,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 3709.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 117,
  'Unnamed: 0.1': 117,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 19524.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39558.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 118,
  'Unnamed: 0.1': 118,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20921.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20921.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 119,
  'Unnamed: 0.1': 119,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 29386.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49420.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 120,
  'Unnamed: 0.1': 120,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20475.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20475.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 121,
  'Unnamed: 0.1': 121,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 3135.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35281.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 122,
  'Unnamed: 0.1': 122,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 3956.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 7665.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 123,
  'Unnamed: 0.1': 123,
  'activite': True,
  'activite_conj': False,
  'age': 30,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37990.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 124,
  'Unnamed: 0.1': 124,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 16884.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20593.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 125,
  'Unnamed: 0.1': 125,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 22728.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28674.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 126,
  'Unnamed: 0.1': 126,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 27416.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47450.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 127,
  'Unnamed: 0.1': 127,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 28904.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28904.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 128,
  'Unnamed: 0.1': 128,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 16484.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16484.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 129,
  'Unnamed: 0.1': 129,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18160.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18160.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 130,
  'Unnamed: 0.1': 130,
  'activite': True,
  'activite_conj': True,
  'age': 25,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 17214.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30723.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 131,
  'Unnamed: 0.1': 131,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 32657.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32657.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 132,
  'Unnamed: 0.1': 132,
  'activite': True,
  'activite_conj': False,
  'age': 34,
  'age_conj': 34.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32146.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 133,
  'Unnamed: 0.1': 133,
  'activite': True,
  'activite_conj': False,
  'age': 26,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 15991.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 15991.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 134,
  'Unnamed: 0.1': 134,
  'activite': True,
  'activite_conj': False,
  'age': 35,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 3709.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 135,
  'Unnamed: 0.1': 135,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 49659.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49659.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 136,
  'Unnamed: 0.1': 136,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 10498.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16444.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 137,
  'Unnamed: 0.1': 137,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 110040.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 110040.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 138,
  'Unnamed: 0.1': 138,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 24793.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28502.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 139,
  'Unnamed: 0.1': 139,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 67566.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 67566.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 140,
  'Unnamed: 0.1': 140,
  'activite': True,
  'activite_conj': False,
  'age': 30,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37990.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 141,
  'Unnamed: 0.1': 141,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 39498.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 55962.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 142,
  'Unnamed: 0.1': 142,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 28038.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 48888.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 143,
  'Unnamed: 0.1': 143,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 52443.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 56152.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 144,
  'Unnamed: 0.1': 144,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 26960.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47011.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 145,
  'Unnamed: 0.1': 145,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 16808.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 54798.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 146,
  'Unnamed: 0.1': 146,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20850.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 147,
  'Unnamed: 0.1': 147,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 29358.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33067.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 148,
  'Unnamed: 0.1': 148,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20889.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20889.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 149,
  'Unnamed: 0.1': 149,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 35.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 28847.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 51494.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 150,
  'Unnamed: 0.1': 150,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 13785.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36432.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 151,
  'Unnamed: 0.1': 151,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 20312.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42959.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 152,
  'Unnamed: 0.1': 152,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 17606.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38456.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 153,
  'Unnamed: 0.1': 153,
  'activite': True,
  'activite_conj': False,
  'age': 37,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 154,
  'Unnamed: 0.1': 154,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 20734.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26680.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 155,
  'Unnamed: 0.1': 155,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 22566.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22566.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 156,
  'Unnamed: 0.1': 156,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 24495.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 56641.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 157,
  'Unnamed: 0.1': 157,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 40092.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43801.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 158,
  'Unnamed: 0.1': 158,
  'activite': True,
  'activite_conj': True,
  'age': 25,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 14939.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28448.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 159,
  'Unnamed: 0.1': 159,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 160,
  'Unnamed: 0.1': 160,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 161,
  'Unnamed: 0.1': 161,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 7572.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 7572.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 162,
  'Unnamed: 0.1': 162,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 163,
  'Unnamed: 0.1': 163,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 14948.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35798.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 164,
  'Unnamed: 0.1': 164,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 22174.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 60164.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 165,
  'Unnamed: 0.1': 165,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 31680.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 63826.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 166,
  'Unnamed: 0.1': 166,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 37342.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37342.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 167,
  'Unnamed: 0.1': 167,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 21741.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 27687.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 168,
  'Unnamed: 0.1': 168,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 169,
  'Unnamed: 0.1': 169,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 35664.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35664.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 170,
  'Unnamed: 0.1': 170,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 24739.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45589.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 171,
  'Unnamed: 0.1': 171,
  'activite': True,
  'activite_conj': False,
  'age': 37,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 172,
  'Unnamed: 0.1': 172,
  'activite': False,
  'activite_conj': False,
  'age': 33,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 173,
  'Unnamed: 0.1': 173,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 44898.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44898.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 174,
  'Unnamed: 0.1': 174,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 40092.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 72238.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 175,
  'Unnamed: 0.1': 175,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 34463.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38172.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 176,
  'Unnamed: 0.1': 176,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 30912.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53559.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 177,
  'Unnamed: 0.1': 177,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 22438.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22438.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 178,
  'Unnamed: 0.1': 178,
  'activite': True,
  'activite_conj': False,
  'age': 37,
  'age_conj': 36.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 179,
  'Unnamed: 0.1': 179,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 17816.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39562.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 180,
  'Unnamed: 0.1': 180,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 25963.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25963.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 181,
  'Unnamed: 0.1': 181,
  'activite': True,
  'activite_conj': False,
  'age': 35,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 3709.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 182,
  'Unnamed: 0.1': 182,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 17277.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37311.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 183,
  'Unnamed: 0.1': 183,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 15758.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19467.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 184,
  'Unnamed: 0.1': 184,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26241.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26241.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 185,
  'Unnamed: 0.1': 185,
  'activite': True,
  'activite_conj': False,
  'age': 39,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20051.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 186,
  'Unnamed: 0.1': 186,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 21429.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44076.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 187,
  'Unnamed: 0.1': 187,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 22400.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26109.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 188,
  'Unnamed: 0.1': 188,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 189,
  'Unnamed: 0.1': 189,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': -198.21673584,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 23425.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44275.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 190,
  'Unnamed: 0.1': 190,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 17864.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38714.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 191,
  'Unnamed: 0.1': 191,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 5946.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 192,
  'Unnamed: 0.1': 192,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': -1910.21057129,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 31346.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 63492.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 193,
  'Unnamed: 0.1': 193,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 27487.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 50134.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 194,
  'Unnamed: 0.1': 194,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 19426.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23135.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 195,
  'Unnamed: 0.1': 195,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 32818.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 54564.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 196,
  'Unnamed: 0.1': 196,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 197,
  'Unnamed: 0.1': 197,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 22046.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 54192.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 198,
  'Unnamed: 0.1': 198,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 18205.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38256.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 199,
  'Unnamed: 0.1': 199,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 25589.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31535.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 200,
  'Unnamed: 0.1': 200,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 31744.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35453.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 201,
  'Unnamed: 0.1': 201,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 38925.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 60671.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 202,
  'Unnamed: 0.1': 202,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 37.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 21903.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43649.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 203,
  'Unnamed: 0.1': 203,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 18183.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38234.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 204,
  'Unnamed: 0.1': 204,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 24220.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46867.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 205,
  'Unnamed: 0.1': 205,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 42384.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46093.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 206,
  'Unnamed: 0.1': 206,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 25736.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25736.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 207,
  'Unnamed: 0.1': 207,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 18751.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22460.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 208,
  'Unnamed: 0.1': 208,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 25353.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45404.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 209,
  'Unnamed: 0.1': 209,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 43200.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43200.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 210,
  'Unnamed: 0.1': 210,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18086.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18086.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 211,
  'Unnamed: 0.1': 211,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 3816.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 3816.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 212,
  'Unnamed: 0.1': 212,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 28656.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49506.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 213,
  'Unnamed: 0.1': 213,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 27375.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47409.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 214,
  'Unnamed: 0.1': 214,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 3408.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23459.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 215,
  'Unnamed: 0.1': 215,
  'activite': True,
  'activite_conj': False,
  'age': 41,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31487.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 216,
  'Unnamed: 0.1': 216,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 47343.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 69089.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 217,
  'Unnamed: 0.1': 217,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 5992.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9701.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 218,
  'Unnamed: 0.1': 218,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 42509.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 58982.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 219,
  'Unnamed: 0.1': 219,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 24250.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24250.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 220,
  'Unnamed: 0.1': 220,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 16189.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16189.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 221,
  'Unnamed: 0.1': 221,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 222,
  'Unnamed: 0.1': 222,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 21875.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44522.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 223,
  'Unnamed: 0.1': 223,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 28331.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28331.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 224,
  'Unnamed: 0.1': 224,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 19941.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19941.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 225,
  'Unnamed: 0.1': 225,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 40261.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46207.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 226,
  'Unnamed: 0.1': 226,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 16876.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49022.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 227,
  'Unnamed: 0.1': 227,
  'activite': True,
  'activite_conj': False,
  'age': 34,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32146.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 228,
  'Unnamed: 0.1': 228,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 30281.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 50332.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 229,
  'Unnamed: 0.1': 229,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 24058.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44109.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 230,
  'Unnamed: 0.1': 230,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 15554.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35605.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 231,
  'Unnamed: 0.1': 231,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 54014.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 54014.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 232,
  'Unnamed: 0.1': 232,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 17248.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38994.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 233,
  'Unnamed: 0.1': 233,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 38.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 25678.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 57824.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 234,
  'Unnamed: 0.1': 234,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 25066.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25066.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 235,
  'Unnamed: 0.1': 235,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 28233.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 48284.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 236,
  'Unnamed: 0.1': 236,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 26342.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46393.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 237,
  'Unnamed: 0.1': 237,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 44224.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44224.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 238,
  'Unnamed: 0.1': 238,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 28421.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32130.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 239,
  'Unnamed: 0.1': 239,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 26935.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32881.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 240,
  'Unnamed: 0.1': 240,
  'activite': True,
  'activite_conj': False,
  'age': 39,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20051.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 241,
  'Unnamed: 0.1': 241,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 32005.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 52039.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 242,
  'Unnamed: 0.1': 242,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 19398.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39449.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 243,
  'Unnamed: 0.1': 243,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 49735.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 69769.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 244,
  'Unnamed: 0.1': 244,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 42640.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 74127.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 245,
  'Unnamed: 0.1': 245,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 97924.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 97924.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 246,
  'Unnamed: 0.1': 246,
  'activite': True,
  'activite_conj': False,
  'age': 41,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31487.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 247,
  'Unnamed: 0.1': 247,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 17034.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 55024.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 248,
  'Unnamed: 0.1': 248,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 28022.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 59509.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 249,
  'Unnamed: 0.1': 249,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 34440.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 54491.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 250,
  'Unnamed: 0.1': 250,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 45186.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45186.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 251,
  'Unnamed: 0.1': 251,
  'activite': True,
  'activite_conj': False,
  'age': 35,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 3709.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 252,
  'Unnamed: 0.1': 252,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 28572.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 51219.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 253,
  'Unnamed: 0.1': 253,
  'activite': True,
  'activite_conj': True,
  'age': 31,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -198.21673584,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20850.0,
  'salaire_conj': 22289.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43139.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 254,
  'Unnamed: 0.1': 254,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 33480.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33480.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 255,
  'Unnamed: 0.1': 255,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 29935.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49986.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 256,
  'Unnamed: 0.1': 256,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 16728.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16728.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 257,
  'Unnamed: 0.1': 257,
  'activite': True,
  'activite_conj': False,
  'age': 37,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 258,
  'Unnamed: 0.1': 258,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 39.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 22055.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 54201.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 259,
  'Unnamed: 0.1': 259,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 12791.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34537.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 260,
  'Unnamed: 0.1': 260,
  'activite': True,
  'activite_conj': True,
  'age': 26,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 15991.0,
  'salaire_conj': 10623.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26614.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 261,
  'Unnamed: 0.1': 261,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 119751.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 119751.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 262,
  'Unnamed: 0.1': 262,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 263,
  'Unnamed: 0.1': 263,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 3459.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 3459.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 264,
  'Unnamed: 0.1': 264,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 20875.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42621.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 265,
  'Unnamed: 0.1': 265,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 32775.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32775.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 266,
  'Unnamed: 0.1': 266,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 37097.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 57131.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 267,
  'Unnamed: 0.1': 267,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 18399.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38450.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 268,
  'Unnamed: 0.1': 268,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 33053.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53087.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 269,
  'Unnamed: 0.1': 269,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17340.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 270,
  'Unnamed: 0.1': 270,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21746.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 271,
  'Unnamed: 0.1': 271,
  'activite': True,
  'activite_conj': False,
  'age': 41,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31487.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 272,
  'Unnamed: 0.1': 272,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 23332.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45078.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 273,
  'Unnamed: 0.1': 273,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 34236.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34236.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 274,
  'Unnamed: 0.1': 274,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 53327.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53327.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 275,
  'Unnamed: 0.1': 275,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 23623.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23623.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 276,
  'Unnamed: 0.1': 276,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 22399.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45046.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 277,
  'Unnamed: 0.1': 277,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 12751.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35398.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 278,
  'Unnamed: 0.1': 278,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 19086.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19086.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 279,
  'Unnamed: 0.1': 279,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 12054.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12054.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 280,
  'Unnamed: 0.1': 280,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31487.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 281,
  'Unnamed: 0.1': 281,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 27678.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30072.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 282,
  'Unnamed: 0.1': 282,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 19141.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19141.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 283,
  'Unnamed: 0.1': 283,
  'activite': True,
  'activite_conj': False,
  'age': 45,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 284,
  'Unnamed: 0.1': 284,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 40.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 17947.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40594.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 285,
  'Unnamed: 0.1': 285,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 15287.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 15287.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 286,
  'Unnamed: 0.1': 286,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 35386.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 48315.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 287,
  'Unnamed: 0.1': 287,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 21612.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44259.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 288,
  'Unnamed: 0.1': 288,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 289,
  'Unnamed: 0.1': 289,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 13351.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35097.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 290,
  'Unnamed: 0.1': 290,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 30639.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 52385.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 291,
  'Unnamed: 0.1': 291,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 36304.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36304.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 292,
  'Unnamed: 0.1': 292,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 34858.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 66345.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 293,
  'Unnamed: 0.1': 293,
  'activite': True,
  'activite_conj': False,
  'age': 22,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 4190.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 4190.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 294,
  'Unnamed: 0.1': 294,
  'activite': True,
  'activite_conj': True,
  'age': 26,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 15991.0,
  'salaire_conj': 11122.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 27113.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 295,
  'Unnamed: 0.1': 295,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 23536.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43587.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 296,
  'Unnamed: 0.1': 296,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 20703.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33632.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 297,
  'Unnamed: 0.1': 297,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 32249.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35958.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 298,
  'Unnamed: 0.1': 298,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 49612.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 72259.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 299,
  'Unnamed: 0.1': 299,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 18004.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34468.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 300,
  'Unnamed: 0.1': 300,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 25173.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 50320.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 301,
  'Unnamed: 0.1': 301,
  'activite': True,
  'activite_conj': False,
  'age': 39,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20051.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 302,
  'Unnamed: 0.1': 302,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 29097.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49148.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 303,
  'Unnamed: 0.1': 303,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 41536.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47482.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 304,
  'Unnamed: 0.1': 304,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 29963.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 61450.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 305,
  'Unnamed: 0.1': 305,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 29070.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46410.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 306,
  'Unnamed: 0.1': 306,
  'activite': True,
  'activite_conj': False,
  'age': 37,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 307,
  'Unnamed: 0.1': 307,
  'activite': True,
  'activite_conj': False,
  'age': 27,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16464.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 308,
  'Unnamed: 0.1': 308,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 13324.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33375.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 309,
  'Unnamed: 0.1': 309,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 36961.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40670.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 310,
  'Unnamed: 0.1': 310,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 130168.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 152815.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 311,
  'Unnamed: 0.1': 311,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 21350.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38690.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 312,
  'Unnamed: 0.1': 312,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26392.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26392.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 313,
  'Unnamed: 0.1': 313,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 17226.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38972.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 314,
  'Unnamed: 0.1': 314,
  'activite': True,
  'activite_conj': False,
  'age': 39,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20051.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 315,
  'Unnamed: 0.1': 315,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 43968.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 76114.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 316,
  'Unnamed: 0.1': 316,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 27111.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 29505.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 317,
  'Unnamed: 0.1': 317,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 41.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 39167.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 70654.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 318,
  'Unnamed: 0.1': 318,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18183.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18183.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 319,
  'Unnamed: 0.1': 319,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 35482.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 57228.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 320,
  'Unnamed: 0.1': 320,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 25431.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45482.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 321,
  'Unnamed: 0.1': 321,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 22861.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38986.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 322,
  'Unnamed: 0.1': 322,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 15581.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33460.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 323,
  'Unnamed: 0.1': 323,
  'activite': True,
  'activite_conj': False,
  'age': 42,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12929.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 324,
  'Unnamed: 0.1': 324,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 18142.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49629.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 325,
  'Unnamed: 0.1': 325,
  'activite': True,
  'activite_conj': False,
  'age': 37,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 326,
  'Unnamed: 0.1': 326,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 30526.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43455.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 327,
  'Unnamed: 0.1': 327,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 62163.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 75092.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 328,
  'Unnamed: 0.1': 328,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 23886.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45632.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 329,
  'Unnamed: 0.1': 329,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 26450.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43790.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 330,
  'Unnamed: 0.1': 330,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 15600.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47746.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 331,
  'Unnamed: 0.1': 331,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 21104.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43751.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 332,
  'Unnamed: 0.1': 332,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 13469.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36116.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 333,
  'Unnamed: 0.1': 333,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 22969.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44715.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 334,
  'Unnamed: 0.1': 334,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 23043.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35972.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 335,
  'Unnamed: 0.1': 335,
  'activite': True,
  'activite_conj': False,
  'age': 47,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 336,
  'Unnamed: 0.1': 336,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 31424.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 54071.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 337,
  'Unnamed: 0.1': 337,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 28702.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41631.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 338,
  'Unnamed: 0.1': 338,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 27102.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47153.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 339,
  'Unnamed: 0.1': 339,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 4437.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35924.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 340,
  'Unnamed: 0.1': 340,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 53875.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 85362.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 341,
  'Unnamed: 0.1': 341,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 46696.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 69343.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 342,
  'Unnamed: 0.1': 342,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 18173.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35513.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 343,
  'Unnamed: 0.1': 343,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 17666.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37717.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 344,
  'Unnamed: 0.1': 344,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 102244.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 112128.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 345,
  'Unnamed: 0.1': 345,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 15311.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47457.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 346,
  'Unnamed: 0.1': 346,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 38373.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 58424.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 347,
  'Unnamed: 0.1': 347,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 46244.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 66295.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 348,
  'Unnamed: 0.1': 348,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 349,
  'Unnamed: 0.1': 349,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 5906.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18835.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 350,
  'Unnamed: 0.1': 350,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 145427.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 145427.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 351,
  'Unnamed: 0.1': 351,
  'activite': True,
  'activite_conj': True,
  'age': 34,
  'age_conj': 42.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1910.21057129,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 32146.0,
  'salaire_conj': 20810.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 52956.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 352,
  'Unnamed: 0.1': 352,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 77987.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 109474.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 353,
  'Unnamed: 0.1': 353,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 24351.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46097.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 354,
  'Unnamed: 0.1': 354,
  'activite': False,
  'activite_conj': False,
  'age': 43,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 355,
  'Unnamed: 0.1': 355,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 23879.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40352.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 356,
  'Unnamed: 0.1': 356,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20440.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20440.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 357,
  'Unnamed: 0.1': 357,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 35145.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 55196.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 358,
  'Unnamed: 0.1': 358,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 103204.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 103204.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 359,
  'Unnamed: 0.1': 359,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 22005.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22005.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 360,
  'Unnamed: 0.1': 360,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20051.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 361,
  'Unnamed: 0.1': 361,
  'activite': True,
  'activite_conj': True,
  'age': 23,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9749.0,
  'salaire_conj': 17430.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 27179.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 362,
  'Unnamed: 0.1': 362,
  'activite': False,
  'activite_conj': False,
  'age': 43,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 363,
  'Unnamed: 0.1': 363,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 34480.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 57127.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 364,
  'Unnamed: 0.1': 364,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 365,
  'Unnamed: 0.1': 365,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 24462.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24462.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 366,
  'Unnamed: 0.1': 366,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 8949.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30695.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 367,
  'Unnamed: 0.1': 367,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 21532.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21532.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 368,
  'Unnamed: 0.1': 368,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 44200.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 75687.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 369,
  'Unnamed: 0.1': 369,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 370,
  'Unnamed: 0.1': 370,
  'activite': True,
  'activite_conj': False,
  'age': 45,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 371,
  'Unnamed: 0.1': 371,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 23070.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23070.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 372,
  'Unnamed: 0.1': 372,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 29233.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 51880.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 373,
  'Unnamed: 0.1': 373,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 25010.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 56497.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 374,
  'Unnamed: 0.1': 374,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 25516.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42856.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 375,
  'Unnamed: 0.1': 375,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 36095.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53435.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 376,
  'Unnamed: 0.1': 376,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 35809.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 58456.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 377,
  'Unnamed: 0.1': 377,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 36689.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36689.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 378,
  'Unnamed: 0.1': 378,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 14799.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34850.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 379,
  'Unnamed: 0.1': 379,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 6773.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24113.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 380,
  'Unnamed: 0.1': 380,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21746.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 381,
  'Unnamed: 0.1': 381,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 43.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 22566.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 60556.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 382,
  'Unnamed: 0.1': 382,
  'activite': True,
  'activite_conj': False,
  'age': 42,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12929.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 383,
  'Unnamed: 0.1': 383,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 24736.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24736.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 384,
  'Unnamed: 0.1': 384,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 7220.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20149.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 385,
  'Unnamed: 0.1': 385,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 22649.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22649.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 386,
  'Unnamed: 0.1': 386,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 19943.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19943.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 387,
  'Unnamed: 0.1': 387,
  'activite': True,
  'activite_conj': True,
  'age': 27,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16464.0,
  'salaire_conj': 11656.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28120.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 388,
  'Unnamed: 0.1': 388,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 26739.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39668.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 389,
  'Unnamed: 0.1': 389,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 20732.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 52219.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 390,
  'Unnamed: 0.1': 390,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 21440.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23834.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 391,
  'Unnamed: 0.1': 391,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 28086.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41015.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 392,
  'Unnamed: 0.1': 392,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 3596.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26243.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 393,
  'Unnamed: 0.1': 393,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 186506.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 188900.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 394,
  'Unnamed: 0.1': 394,
  'activite': True,
  'activite_conj': False,
  'age': 46,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16473.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 395,
  'Unnamed: 0.1': 395,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 17803.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49290.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 396,
  'Unnamed: 0.1': 396,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 69395.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 89446.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 397,
  'Unnamed: 0.1': 397,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 11227.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32973.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 398,
  'Unnamed: 0.1': 398,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 32731.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45660.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 399,
  'Unnamed: 0.1': 399,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 20508.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37848.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 400,
  'Unnamed: 0.1': 400,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 20932.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33861.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 401,
  'Unnamed: 0.1': 401,
  'activite': True,
  'activite_conj': False,
  'age': 41,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31487.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 402,
  'Unnamed: 0.1': 402,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 17384.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37435.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 403,
  'Unnamed: 0.1': 403,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 404,
  'Unnamed: 0.1': 404,
  'activite': False,
  'activite_conj': True,
  'age': 28,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20318.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20318.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 405,
  'Unnamed: 0.1': 405,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 7279.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 10988.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 406,
  'Unnamed: 0.1': 406,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 27444.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40373.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 407,
  'Unnamed: 0.1': 407,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 25399.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47145.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 408,
  'Unnamed: 0.1': 408,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 35802.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 67289.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 409,
  'Unnamed: 0.1': 409,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 22491.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42542.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 410,
  'Unnamed: 0.1': 410,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18215.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18215.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 411,
  'Unnamed: 0.1': 411,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 15705.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 15705.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 412,
  'Unnamed: 0.1': 412,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 15965.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47452.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 413,
  'Unnamed: 0.1': 413,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 25783.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43123.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 414,
  'Unnamed: 0.1': 414,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 17181.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30110.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 415,
  'Unnamed: 0.1': 415,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 23618.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26012.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 416,
  'Unnamed: 0.1': 416,
  'activite': True,
  'activite_conj': False,
  'age': 37,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 417,
  'Unnamed: 0.1': 417,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 25344.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41817.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 418,
  'Unnamed: 0.1': 418,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 15267.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17661.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 419,
  'Unnamed: 0.1': 419,
  'activite': True,
  'activite_conj': False,
  'age': 45,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 420,
  'Unnamed: 0.1': 420,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 63816.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 83867.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 421,
  'Unnamed: 0.1': 421,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 44.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 422,
  'Unnamed: 0.1': 422,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 36161.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38555.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 423,
  'Unnamed: 0.1': 423,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 33297.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39243.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 424,
  'Unnamed: 0.1': 424,
  'activite': True,
  'activite_conj': False,
  'age': 35,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 3709.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 425,
  'Unnamed: 0.1': 425,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 28609.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 60096.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 426,
  'Unnamed: 0.1': 426,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18491.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18491.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 427,
  'Unnamed: 0.1': 427,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 11285.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21169.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 428,
  'Unnamed: 0.1': 428,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 31976.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53722.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 429,
  'Unnamed: 0.1': 429,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 72897.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 90237.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 430,
  'Unnamed: 0.1': 430,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 21686.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53173.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 431,
  'Unnamed: 0.1': 431,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 432,
  'Unnamed: 0.1': 432,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20515.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20515.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 433,
  'Unnamed: 0.1': 433,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 26305.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28699.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 434,
  'Unnamed: 0.1': 434,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 22928.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22928.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 435,
  'Unnamed: 0.1': 435,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 45139.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 61612.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 436,
  'Unnamed: 0.1': 436,
  'activite': True,
  'activite_conj': False,
  'age': 41,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31487.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 437,
  'Unnamed: 0.1': 437,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 34565.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 51038.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 438,
  'Unnamed: 0.1': 438,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 10042.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22971.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 439,
  'Unnamed: 0.1': 439,
  'activite': True,
  'activite_conj': True,
  'age': 25,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': True,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13509.0,
  'salaire_conj': 32818.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46327.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 440,
  'Unnamed: 0.1': 440,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 40302.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 56702.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 441,
  'Unnamed: 0.1': 441,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 28763.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44888.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 442,
  'Unnamed: 0.1': 442,
  'activite': False,
  'activite_conj': True,
  'age': 60,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 443,
  'Unnamed: 0.1': 443,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 32556.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32556.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 444,
  'Unnamed: 0.1': 444,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 17240.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19634.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 445,
  'Unnamed: 0.1': 445,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 2806.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 5200.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 446,
  'Unnamed: 0.1': 446,
  'activite': True,
  'activite_conj': False,
  'age': 37,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 447,
  'Unnamed: 0.1': 447,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 27430.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37314.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 448,
  'Unnamed: 0.1': 448,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 9825.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9825.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 449,
  'Unnamed: 0.1': 449,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 450,
  'Unnamed: 0.1': 450,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 23966.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33850.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 451,
  'Unnamed: 0.1': 451,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 25016.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 27410.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 452,
  'Unnamed: 0.1': 452,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 61045.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 61045.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 453,
  'Unnamed: 0.1': 453,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 454,
  'Unnamed: 0.1': 454,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 45.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20249.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20249.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 455,
  'Unnamed: 0.1': 455,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 42699.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42699.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 456,
  'Unnamed: 0.1': 456,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 28525.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46404.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 457,
  'Unnamed: 0.1': 457,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 15631.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32104.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 458,
  'Unnamed: 0.1': 458,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 31924.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49264.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 459,
  'Unnamed: 0.1': 459,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 19826.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 51313.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 460,
  'Unnamed: 0.1': 460,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 24962.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37891.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 461,
  'Unnamed: 0.1': 461,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 23146.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23146.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 462,
  'Unnamed: 0.1': 462,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 40579.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 57919.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 463,
  'Unnamed: 0.1': 463,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 1363.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 1363.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 464,
  'Unnamed: 0.1': 464,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 22354.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47501.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 465,
  'Unnamed: 0.1': 465,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 12048.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12048.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 466,
  'Unnamed: 0.1': 466,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 51726.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 61610.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 467,
  'Unnamed: 0.1': 467,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 16575.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33048.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 468,
  'Unnamed: 0.1': 468,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 19104.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36444.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 469,
  'Unnamed: 0.1': 469,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 26650.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49297.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 470,
  'Unnamed: 0.1': 470,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 16883.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16883.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 471,
  'Unnamed: 0.1': 471,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16473.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 472,
  'Unnamed: 0.1': 472,
  'activite': False,
  'activite_conj': True,
  'age': 33,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 117525.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 117525.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 473,
  'Unnamed: 0.1': 473,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 27115.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43240.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 474,
  'Unnamed: 0.1': 474,
  'activite': True,
  'activite_conj': False,
  'age': 47,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 475,
  'Unnamed: 0.1': 475,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 476,
  'Unnamed: 0.1': 476,
  'activite': True,
  'activite_conj': False,
  'age': 45,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 477,
  'Unnamed: 0.1': 477,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 52792.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 65721.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 478,
  'Unnamed: 0.1': 478,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 479,
  'Unnamed: 0.1': 479,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 24099.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41439.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 480,
  'Unnamed: 0.1': 480,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 23367.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33251.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 481,
  'Unnamed: 0.1': 481,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 36065.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39774.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 482,
  'Unnamed: 0.1': 482,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 25706.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42179.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 483,
  'Unnamed: 0.1': 483,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 19130.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35603.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 484,
  'Unnamed: 0.1': 484,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 26251.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 57738.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 485,
  'Unnamed: 0.1': 485,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 22655.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22655.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 486,
  'Unnamed: 0.1': 486,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 22715.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32599.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 487,
  'Unnamed: 0.1': 487,
  'activite': True,
  'activite_conj': True,
  'age': 29,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20034.0,
  'salaire_conj': 22981.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43015.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 488,
  'Unnamed: 0.1': 488,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 46.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 11267.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42754.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 489,
  'Unnamed: 0.1': 489,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 490,
  'Unnamed: 0.1': 490,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 19203.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35676.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 491,
  'Unnamed: 0.1': 491,
  'activite': True,
  'activite_conj': False,
  'age': 47,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 492,
  'Unnamed: 0.1': 492,
  'activite': True,
  'activite_conj': True,
  'age': 62,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1267.85375977,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 26863.0,
  'salaire_conj': 25021.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 51884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 493,
  'Unnamed: 0.1': 493,
  'activite': False,
  'activite_conj': False,
  'age': 43,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 494,
  'Unnamed: 0.1': 494,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18484.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18484.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 495,
  'Unnamed: 0.1': 495,
  'activite': True,
  'activite_conj': False,
  'age': 44,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17340.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 496,
  'Unnamed: 0.1': 496,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 19672.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19672.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 497,
  'Unnamed: 0.1': 497,
  'activite': True,
  'activite_conj': False,
  'age': 40,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 498,
  'Unnamed: 0.1': 498,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 52522.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 52522.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 499,
  'Unnamed: 0.1': 499,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 16489.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16489.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 500,
  'Unnamed: 0.1': 500,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 23373.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23373.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 501,
  'Unnamed: 0.1': 501,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 22950.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40290.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 502,
  'Unnamed: 0.1': 502,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 24951.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34835.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 503,
  'Unnamed: 0.1': 503,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 24668.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34552.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 504,
  'Unnamed: 0.1': 504,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 25470.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41943.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 505,
  'Unnamed: 0.1': 505,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 43860.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 59985.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 506,
  'Unnamed: 0.1': 506,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 25920.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 57407.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 507,
  'Unnamed: 0.1': 507,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 3023.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 3023.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 508,
  'Unnamed: 0.1': 508,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 16805.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33278.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 509,
  'Unnamed: 0.1': 509,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 31887.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 63374.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 510,
  'Unnamed: 0.1': 510,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17340.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 511,
  'Unnamed: 0.1': 511,
  'activite': True,
  'activite_conj': False,
  'age': 41,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31487.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 512,
  'Unnamed: 0.1': 512,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 513,
  'Unnamed: 0.1': 513,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20784.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20784.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 514,
  'Unnamed: 0.1': 514,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 52622.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 52622.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 515,
  'Unnamed: 0.1': 515,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 14344.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16738.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 516,
  'Unnamed: 0.1': 516,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 20274.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37614.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 517,
  'Unnamed: 0.1': 517,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 25355.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25355.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 518,
  'Unnamed: 0.1': 518,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 37581.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47465.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 519,
  'Unnamed: 0.1': 519,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 29014.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38898.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 520,
  'Unnamed: 0.1': 520,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 47709.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 64109.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 521,
  'Unnamed: 0.1': 521,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 22300.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38773.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 522,
  'Unnamed: 0.1': 522,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 37990.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37990.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 523,
  'Unnamed: 0.1': 523,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 33534.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33534.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 524,
  'Unnamed: 0.1': 524,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 6992.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 6992.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 525,
  'Unnamed: 0.1': 525,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 16155.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34034.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 526,
  'Unnamed: 0.1': 526,
  'activite': True,
  'activite_conj': True,
  'age': 37,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -517.940368652,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22647.0,
  'salaire_conj': 25953.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 48600.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 527,
  'Unnamed: 0.1': 527,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 70999.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 87472.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 528,
  'Unnamed: 0.1': 528,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 20130.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22524.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 529,
  'Unnamed: 0.1': 529,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 43557.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43557.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 530,
  'Unnamed: 0.1': 530,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 40869.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 57269.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 531,
  'Unnamed: 0.1': 531,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 47.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 29155.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 29155.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 532,
  'Unnamed: 0.1': 532,
  'activite': True,
  'activite_conj': False,
  'age': 42,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12929.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 533,
  'Unnamed: 0.1': 533,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 16261.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16261.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 534,
  'Unnamed: 0.1': 534,
  'activite': True,
  'activite_conj': False,
  'age': 45,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 535,
  'Unnamed: 0.1': 535,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 35096.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35096.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 536,
  'Unnamed: 0.1': 536,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 21634.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24028.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 537,
  'Unnamed: 0.1': 537,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 26847.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42972.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 538,
  'Unnamed: 0.1': 538,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 42053.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 59814.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 539,
  'Unnamed: 0.1': 539,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12929.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 540,
  'Unnamed: 0.1': 540,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 73805.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 76199.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 541,
  'Unnamed: 0.1': 541,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 38354.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40748.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 542,
  'Unnamed: 0.1': 542,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 12908.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22792.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 543,
  'Unnamed: 0.1': 543,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 28444.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45784.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 544,
  'Unnamed: 0.1': 544,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 23640.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26034.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 545,
  'Unnamed: 0.1': 545,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18032.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18032.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 546,
  'Unnamed: 0.1': 546,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 10695.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28035.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 547,
  'Unnamed: 0.1': 547,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 54789.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 79936.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 548,
  'Unnamed: 0.1': 548,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 99211.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 115684.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 549,
  'Unnamed: 0.1': 549,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18521.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18521.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 550,
  'Unnamed: 0.1': 550,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 13141.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30481.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 551,
  'Unnamed: 0.1': 551,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 55101.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 71574.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 552,
  'Unnamed: 0.1': 552,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 60386.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 80437.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 553,
  'Unnamed: 0.1': 553,
  'activite': True,
  'activite_conj': True,
  'age': 62,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1267.85375977,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 26863.0,
  'salaire_conj': 101559.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 128422.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 554,
  'Unnamed: 0.1': 554,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 29103.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 29103.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 555,
  'Unnamed: 0.1': 555,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 13246.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 13246.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 556,
  'Unnamed: 0.1': 556,
  'activite': True,
  'activite_conj': False,
  'age': 38,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21746.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 557,
  'Unnamed: 0.1': 557,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 31154.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 48494.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 558,
  'Unnamed: 0.1': 558,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 43388.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45782.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 559,
  'Unnamed: 0.1': 559,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 24698.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37627.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 560,
  'Unnamed: 0.1': 560,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 30402.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32796.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 561,
  'Unnamed: 0.1': 561,
  'activite': True,
  'activite_conj': False,
  'age': 39,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20051.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 562,
  'Unnamed: 0.1': 562,
  'activite': True,
  'activite_conj': True,
  'age': 35,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 3709.0,
  'salaire_conj': 20518.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24227.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 563,
  'Unnamed: 0.1': 563,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 21600.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41651.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 564,
  'Unnamed: 0.1': 564,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 14811.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32151.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 565,
  'Unnamed: 0.1': 565,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 566,
  'Unnamed: 0.1': 566,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 567,
  'Unnamed: 0.1': 567,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 12684.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22568.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 568,
  'Unnamed: 0.1': 568,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 16428.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 29357.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 569,
  'Unnamed: 0.1': 569,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 18595.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36474.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 570,
  'Unnamed: 0.1': 570,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 1138.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 1138.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 571,
  'Unnamed: 0.1': 571,
  'activite': True,
  'activite_conj': True,
  'age': 38,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 16486.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38232.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 572,
  'Unnamed: 0.1': 572,
  'activite': True,
  'activite_conj': False,
  'age': 46,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16473.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 573,
  'Unnamed: 0.1': 573,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 25436.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41909.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 574,
  'Unnamed: 0.1': 574,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 18681.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34806.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 575,
  'Unnamed: 0.1': 575,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 48.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 28853.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28853.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 576,
  'Unnamed: 0.1': 576,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 63860.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 89007.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 577,
  'Unnamed: 0.1': 577,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 43851.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 60324.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 578,
  'Unnamed: 0.1': 578,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 9486.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19370.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 579,
  'Unnamed: 0.1': 579,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 20720.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36845.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 580,
  'Unnamed: 0.1': 580,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 581,
  'Unnamed: 0.1': 581,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 24191.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40664.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 582,
  'Unnamed: 0.1': 582,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 55451.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 73212.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 583,
  'Unnamed: 0.1': 583,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 21170.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31054.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 584,
  'Unnamed: 0.1': 584,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 585,
  'Unnamed: 0.1': 585,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 19630.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36030.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 586,
  'Unnamed: 0.1': 586,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 269.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16742.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 587,
  'Unnamed: 0.1': 587,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 33664.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 50137.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 588,
  'Unnamed: 0.1': 588,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 45031.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 83021.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 589,
  'Unnamed: 0.1': 589,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 37604.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 55483.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 590,
  'Unnamed: 0.1': 590,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16473.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 591,
  'Unnamed: 0.1': 591,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 592,
  'Unnamed: 0.1': 592,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 19494.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32423.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 593,
  'Unnamed: 0.1': 593,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 594,
  'Unnamed: 0.1': 594,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 45035.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 62375.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 595,
  'Unnamed: 0.1': 595,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 19161.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35634.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 596,
  'Unnamed: 0.1': 596,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 29374.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46714.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 597,
  'Unnamed: 0.1': 597,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 598,
  'Unnamed: 0.1': 598,
  'activite': True,
  'activite_conj': False,
  'age': 44,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17340.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 599,
  'Unnamed: 0.1': 599,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 16687.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 29616.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 600,
  'Unnamed: 0.1': 600,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20278.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20278.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 601,
  'Unnamed: 0.1': 601,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 28365.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28365.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 602,
  'Unnamed: 0.1': 602,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 9005.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9005.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 603,
  'Unnamed: 0.1': 603,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 15297.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33176.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 604,
  'Unnamed: 0.1': 604,
  'activite': True,
  'activite_conj': False,
  'age': 45,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 605,
  'Unnamed: 0.1': 605,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 606,
  'Unnamed: 0.1': 606,
  'activite': False,
  'activite_conj': True,
  'age': 63,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 17604.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17604.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 607,
  'Unnamed: 0.1': 607,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 61921.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 78046.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 608,
  'Unnamed: 0.1': 608,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 20305.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 51792.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 609,
  'Unnamed: 0.1': 609,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 610,
  'Unnamed: 0.1': 610,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 21493.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38833.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 611,
  'Unnamed: 0.1': 611,
  'activite': True,
  'activite_conj': True,
  'age': 32,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 5946.0,
  'salaire_conj': 13217.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19163.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 612,
  'Unnamed: 0.1': 612,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 74555.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 106042.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 613,
  'Unnamed: 0.1': 613,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 614,
  'Unnamed: 0.1': 614,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 92888.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 109013.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 615,
  'Unnamed: 0.1': 615,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 34033.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 50158.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 616,
  'Unnamed: 0.1': 616,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 128018.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 144491.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 617,
  'Unnamed: 0.1': 617,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 618,
  'Unnamed: 0.1': 618,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 14100.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23984.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 619,
  'Unnamed: 0.1': 619,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 22214.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38687.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 620,
  'Unnamed: 0.1': 620,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 22344.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38744.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 621,
  'Unnamed: 0.1': 621,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 62428.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 78901.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 622,
  'Unnamed: 0.1': 622,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 17860.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 27744.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 623,
  'Unnamed: 0.1': 623,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 49.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 624,
  'Unnamed: 0.1': 624,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 95045.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 112385.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 625,
  'Unnamed: 0.1': 625,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 8223.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18107.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 626,
  'Unnamed: 0.1': 626,
  'activite': True,
  'activite_conj': False,
  'age': 41,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31487.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 627,
  'Unnamed: 0.1': 627,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 628,
  'Unnamed: 0.1': 628,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 629,
  'Unnamed: 0.1': 629,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 630,
  'Unnamed: 0.1': 630,
  'activite': True,
  'activite_conj': False,
  'age': 45,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 631,
  'Unnamed: 0.1': 631,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 39227.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39227.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 632,
  'Unnamed: 0.1': 632,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 633,
  'Unnamed: 0.1': 633,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 33345.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33345.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 634,
  'Unnamed: 0.1': 634,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 39068.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39068.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 635,
  'Unnamed: 0.1': 635,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 21244.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37717.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 636,
  'Unnamed: 0.1': 636,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 637,
  'Unnamed: 0.1': 637,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 59951.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 59951.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 638,
  'Unnamed: 0.1': 638,
  'activite': True,
  'activite_conj': False,
  'age': 46,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16473.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 639,
  'Unnamed: 0.1': 639,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 23832.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40232.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 640,
  'Unnamed: 0.1': 640,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 23607.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23607.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 641,
  'Unnamed: 0.1': 641,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 28153.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28153.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 642,
  'Unnamed: 0.1': 642,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 28093.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45972.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 643,
  'Unnamed: 0.1': 643,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 16385.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34264.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 644,
  'Unnamed: 0.1': 644,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 20237.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36710.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 645,
  'Unnamed: 0.1': 645,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 14061.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23945.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 646,
  'Unnamed: 0.1': 646,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 33360.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33360.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 647,
  'Unnamed: 0.1': 647,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 4322.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 14206.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 648,
  'Unnamed: 0.1': 648,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 649,
  'Unnamed: 0.1': 649,
  'activite': True,
  'activite_conj': False,
  'age': 44,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17340.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 650,
  'Unnamed: 0.1': 650,
  'activite': False,
  'activite_conj': False,
  'age': 56,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 651,
  'Unnamed: 0.1': 651,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 652,
  'Unnamed: 0.1': 652,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 17889.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17889.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 653,
  'Unnamed: 0.1': 653,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 14055.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30180.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 654,
  'Unnamed: 0.1': 654,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 20766.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30650.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 655,
  'Unnamed: 0.1': 655,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 37786.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 55126.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 656,
  'Unnamed: 0.1': 656,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': -962.671264648,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 34340.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 59487.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 657,
  'Unnamed: 0.1': 657,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 143987.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 161327.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 658,
  'Unnamed: 0.1': 658,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 37452.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37452.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 659,
  'Unnamed: 0.1': 659,
  'activite': False,
  'activite_conj': False,
  'age': 56,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 660,
  'Unnamed: 0.1': 660,
  'activite': True,
  'activite_conj': False,
  'age': 47,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 661,
  'Unnamed: 0.1': 661,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 95972.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 105856.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 662,
  'Unnamed: 0.1': 662,
  'activite': True,
  'activite_conj': False,
  'age': 44,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17340.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 663,
  'Unnamed: 0.1': 663,
  'activite': True,
  'activite_conj': False,
  'age': 42,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12929.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 664,
  'Unnamed: 0.1': 664,
  'activite': True,
  'activite_conj': True,
  'age': 30,
  'age_conj': 50.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -2632.09790039,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 37990.0,
  'salaire_conj': 24091.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 62081.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 665,
  'Unnamed: 0.1': 665,
  'activite': True,
  'activite_conj': False,
  'age': 54,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17761.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 666,
  'Unnamed: 0.1': 666,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 24142.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34026.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 667,
  'Unnamed: 0.1': 667,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 25863.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28257.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 668,
  'Unnamed: 0.1': 668,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 669,
  'Unnamed: 0.1': 669,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 670,
  'Unnamed: 0.1': 670,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 23335.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39808.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 671,
  'Unnamed: 0.1': 671,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 19307.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44454.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 672,
  'Unnamed: 0.1': 672,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17340.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 673,
  'Unnamed: 0.1': 673,
  'activite': False,
  'activite_conj': True,
  'age': 43,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 39607.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39607.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 674,
  'Unnamed: 0.1': 674,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 35382.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 51855.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 675,
  'Unnamed: 0.1': 675,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 31341.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31341.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 676,
  'Unnamed: 0.1': 676,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 677,
  'Unnamed: 0.1': 677,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 678,
  'Unnamed: 0.1': 678,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 26631.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36515.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 679,
  'Unnamed: 0.1': 679,
  'activite': True,
  'activite_conj': False,
  'age': 44,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17340.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 680,
  'Unnamed: 0.1': 680,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 20590.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45737.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 681,
  'Unnamed: 0.1': 681,
  'activite': True,
  'activite_conj': False,
  'age': 42,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12929.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 682,
  'Unnamed: 0.1': 682,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 683,
  'Unnamed: 0.1': 683,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 29047.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 29047.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 684,
  'Unnamed: 0.1': 684,
  'activite': True,
  'activite_conj': False,
  'age': 45,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 685,
  'Unnamed: 0.1': 685,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 50064.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 75211.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 686,
  'Unnamed: 0.1': 686,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 16171.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26055.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 687,
  'Unnamed: 0.1': 687,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 24637.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24637.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 688,
  'Unnamed: 0.1': 688,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 37476.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53601.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 689,
  'Unnamed: 0.1': 689,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26613.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26613.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 690,
  'Unnamed: 0.1': 690,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 30913.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47313.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 691,
  'Unnamed: 0.1': 691,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 692,
  'Unnamed: 0.1': 692,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 29257.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45657.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 693,
  'Unnamed: 0.1': 693,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 694,
  'Unnamed: 0.1': 694,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 13255.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 29728.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 695,
  'Unnamed: 0.1': 695,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 22576.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39916.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 696,
  'Unnamed: 0.1': 696,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 697,
  'Unnamed: 0.1': 697,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 28788.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46549.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 698,
  'Unnamed: 0.1': 698,
  'activite': True,
  'activite_conj': True,
  'age': 39,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20051.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 699,
  'Unnamed: 0.1': 699,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 18507.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36386.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 700,
  'Unnamed: 0.1': 700,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 701,
  'Unnamed: 0.1': 701,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 16379.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32779.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 702,
  'Unnamed: 0.1': 702,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 76242.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 93582.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 703,
  'Unnamed: 0.1': 703,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 14342.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 14342.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 704,
  'Unnamed: 0.1': 704,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 705,
  'Unnamed: 0.1': 705,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 41053.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41053.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 706,
  'Unnamed: 0.1': 706,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 51.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 707,
  'Unnamed: 0.1': 707,
  'activite': True,
  'activite_conj': False,
  'age': 47,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 708,
  'Unnamed: 0.1': 708,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 709,
  'Unnamed: 0.1': 709,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 710,
  'Unnamed: 0.1': 710,
  'activite': True,
  'activite_conj': False,
  'age': 45,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 711,
  'Unnamed: 0.1': 711,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 59176.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 69060.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 712,
  'Unnamed: 0.1': 712,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 19145.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44292.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 713,
  'Unnamed: 0.1': 713,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 714,
  'Unnamed: 0.1': 714,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 16501.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41648.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 715,
  'Unnamed: 0.1': 715,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 28320.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44720.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 716,
  'Unnamed: 0.1': 716,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 30576.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47049.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 717,
  'Unnamed: 0.1': 717,
  'activite': True,
  'activite_conj': False,
  'age': 44,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17340.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 718,
  'Unnamed: 0.1': 718,
  'activite': False,
  'activite_conj': False,
  'age': 64,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 719,
  'Unnamed: 0.1': 719,
  'activite': True,
  'activite_conj': False,
  'age': 46,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16473.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 720,
  'Unnamed: 0.1': 720,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 237337.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 237337.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 721,
  'Unnamed: 0.1': 721,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 26436.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36320.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 722,
  'Unnamed: 0.1': 722,
  'activite': False,
  'activite_conj': True,
  'age': 64,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18541.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18541.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 723,
  'Unnamed: 0.1': 723,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 12123.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12123.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 724,
  'Unnamed: 0.1': 724,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 18370.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34495.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 725,
  'Unnamed: 0.1': 725,
  'activite': False,
  'activite_conj': False,
  'age': 56,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 726,
  'Unnamed: 0.1': 726,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 727,
  'Unnamed: 0.1': 727,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 24326.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26720.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 728,
  'Unnamed: 0.1': 728,
  'activite': True,
  'activite_conj': False,
  'age': 45,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 2394.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 729,
  'Unnamed: 0.1': 729,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 730,
  'Unnamed: 0.1': 730,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 731,
  'Unnamed: 0.1': 731,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 732,
  'Unnamed: 0.1': 732,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 733,
  'Unnamed: 0.1': 733,
  'activite': True,
  'activite_conj': False,
  'age': 54,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17761.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 734,
  'Unnamed: 0.1': 734,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 24458.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42337.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 735,
  'Unnamed: 0.1': 735,
  'activite': False,
  'activite_conj': False,
  'age': 55,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 736,
  'Unnamed: 0.1': 736,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 737,
  'Unnamed: 0.1': 737,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 21924.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31808.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 738,
  'Unnamed: 0.1': 738,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 739,
  'Unnamed: 0.1': 739,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 740,
  'Unnamed: 0.1': 740,
  'activite': True,
  'activite_conj': False,
  'age': 39,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20051.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 741,
  'Unnamed: 0.1': 741,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 742,
  'Unnamed: 0.1': 742,
  'activite': False,
  'activite_conj': False,
  'age': 36,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 743,
  'Unnamed: 0.1': 743,
  'activite': True,
  'activite_conj': True,
  'age': 40,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 12747.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12747.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 744,
  'Unnamed: 0.1': 744,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 60465.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 60465.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 745,
  'Unnamed: 0.1': 745,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 746,
  'Unnamed: 0.1': 746,
  'activite': True,
  'activite_conj': False,
  'age': 46,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16473.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 747,
  'Unnamed: 0.1': 747,
  'activite': False,
  'activite_conj': False,
  'age': 43,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': True,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 748,
  'Unnamed: 0.1': 748,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 52.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 13958.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 13958.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 749,
  'Unnamed: 0.1': 749,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 126494.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 136378.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 750,
  'Unnamed: 0.1': 750,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 751,
  'Unnamed: 0.1': 751,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 22909.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 48056.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 752,
  'Unnamed: 0.1': 752,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 753,
  'Unnamed: 0.1': 753,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 54610.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 72489.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 754,
  'Unnamed: 0.1': 754,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 755,
  'Unnamed: 0.1': 755,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 756,
  'Unnamed: 0.1': 756,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 25783.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35667.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 757,
  'Unnamed: 0.1': 757,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 20448.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38209.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 758,
  'Unnamed: 0.1': 758,
  'activite': False,
  'activite_conj': True,
  'age': 59,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 39287.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39287.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 759,
  'Unnamed: 0.1': 759,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 760,
  'Unnamed: 0.1': 760,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26632.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26632.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 761,
  'Unnamed: 0.1': 761,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 18432.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36311.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 762,
  'Unnamed: 0.1': 762,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 31410.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47535.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 763,
  'Unnamed: 0.1': 763,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 19089.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35214.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 764,
  'Unnamed: 0.1': 764,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 765,
  'Unnamed: 0.1': 765,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 17343.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35222.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 766,
  'Unnamed: 0.1': 766,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 767,
  'Unnamed: 0.1': 767,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 768,
  'Unnamed: 0.1': 768,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 769,
  'Unnamed: 0.1': 769,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 770,
  'Unnamed: 0.1': 770,
  'activite': False,
  'activite_conj': True,
  'age': 36,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 41829.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41829.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 771,
  'Unnamed: 0.1': 771,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 33969.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33969.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 772,
  'Unnamed: 0.1': 772,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 40281.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 65428.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 773,
  'Unnamed: 0.1': 773,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 21033.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 38912.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 774,
  'Unnamed: 0.1': 774,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 775,
  'Unnamed: 0.1': 775,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 18427.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34552.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 776,
  'Unnamed: 0.1': 776,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 17752.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17752.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 777,
  'Unnamed: 0.1': 777,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 7357.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23757.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 778,
  'Unnamed: 0.1': 778,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 779,
  'Unnamed: 0.1': 779,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 30721.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40605.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 780,
  'Unnamed: 0.1': 780,
  'activite': True,
  'activite_conj': False,
  'age': 54,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17761.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 781,
  'Unnamed: 0.1': 781,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 782,
  'Unnamed: 0.1': 782,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 13845.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 13845.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 783,
  'Unnamed: 0.1': 783,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 19991.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37752.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 784,
  'Unnamed: 0.1': 784,
  'activite': False,
  'activite_conj': True,
  'age': 64,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 14280.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 14280.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 785,
  'Unnamed: 0.1': 785,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 786,
  'Unnamed: 0.1': 786,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 21890.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47037.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 787,
  'Unnamed: 0.1': 787,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 38092.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47976.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 788,
  'Unnamed: 0.1': 788,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 53.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 4741.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 29888.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 789,
  'Unnamed: 0.1': 789,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 51027.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 76174.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 790,
  'Unnamed: 0.1': 790,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 55450.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 71850.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 791,
  'Unnamed: 0.1': 791,
  'activite': False,
  'activite_conj': True,
  'age': 69,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 1259.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 23868.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23868.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 792,
  'Unnamed: 0.1': 792,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 25265.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25265.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 793,
  'Unnamed: 0.1': 793,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 28262.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28262.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 794,
  'Unnamed: 0.1': 794,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 23612.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26006.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 795,
  'Unnamed: 0.1': 795,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 36510.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 52635.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 796,
  'Unnamed: 0.1': 796,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 19885.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 45032.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 797,
  'Unnamed: 0.1': 797,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 1924.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 1924.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 798,
  'Unnamed: 0.1': 798,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 799,
  'Unnamed: 0.1': 799,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 800,
  'Unnamed: 0.1': 800,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 801,
  'Unnamed: 0.1': 801,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 59263.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 77024.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 802,
  'Unnamed: 0.1': 802,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 14607.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 32486.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 803,
  'Unnamed: 0.1': 803,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 804,
  'Unnamed: 0.1': 804,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 17898.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35659.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 805,
  'Unnamed: 0.1': 805,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 23898.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41777.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 806,
  'Unnamed: 0.1': 806,
  'activite': True,
  'activite_conj': True,
  'age': 42,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 12929.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 12929.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 807,
  'Unnamed: 0.1': 807,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 30301.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30301.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 808,
  'Unnamed: 0.1': 808,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 58077.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 58077.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 809,
  'Unnamed: 0.1': 809,
  'activite': True,
  'activite_conj': True,
  'age': 41,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1843.1875,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 31487.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31487.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 810,
  'Unnamed: 0.1': 810,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 32332.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 48457.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 811,
  'Unnamed: 0.1': 811,
  'activite': False,
  'activite_conj': False,
  'age': 56,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 812,
  'Unnamed: 0.1': 812,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 813,
  'Unnamed: 0.1': 813,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 34420.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34420.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 814,
  'Unnamed: 0.1': 814,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 815,
  'Unnamed: 0.1': 815,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 30044.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47923.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 816,
  'Unnamed: 0.1': 816,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 43834.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 43834.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 817,
  'Unnamed: 0.1': 817,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 37007.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37007.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 818,
  'Unnamed: 0.1': 818,
  'activite': True,
  'activite_conj': False,
  'age': 54,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17761.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 819,
  'Unnamed: 0.1': 819,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 35538.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 52878.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 820,
  'Unnamed: 0.1': 820,
  'activite': True,
  'activite_conj': True,
  'age': 58,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 3414.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25906.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 821,
  'Unnamed: 0.1': 821,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 17137.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19531.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 822,
  'Unnamed: 0.1': 822,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 823,
  'Unnamed: 0.1': 823,
  'activite': False,
  'activite_conj': False,
  'age': 55,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 824,
  'Unnamed: 0.1': 824,
  'activite': False,
  'activite_conj': False,
  'age': 55,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 825,
  'Unnamed: 0.1': 825,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 826,
  'Unnamed: 0.1': 826,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 30826.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47226.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 827,
  'Unnamed: 0.1': 827,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 828,
  'Unnamed: 0.1': 828,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 50096.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 66496.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 829,
  'Unnamed: 0.1': 829,
  'activite': True,
  'activite_conj': False,
  'age': 39,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 20051.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20051.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 830,
  'Unnamed: 0.1': 830,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 54.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 831,
  'Unnamed: 0.1': 831,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 5543.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 5543.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 832,
  'Unnamed: 0.1': 832,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 18915.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 18915.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 833,
  'Unnamed: 0.1': 833,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 14970.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31370.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 834,
  'Unnamed: 0.1': 834,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 19461.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35861.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 835,
  'Unnamed: 0.1': 835,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 22838.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47985.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 836,
  'Unnamed: 0.1': 836,
  'activite': True,
  'activite_conj': False,
  'age': 47,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 837,
  'Unnamed: 0.1': 837,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 838,
  'Unnamed: 0.1': 838,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 20506.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 36906.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 839,
  'Unnamed: 0.1': 839,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 840,
  'Unnamed: 0.1': 840,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 30575.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30575.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 841,
  'Unnamed: 0.1': 841,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 46729.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46729.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 842,
  'Unnamed: 0.1': 842,
  'activite': False,
  'activite_conj': True,
  'age': 59,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20376.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20376.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 843,
  'Unnamed: 0.1': 843,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 45426.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 62766.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 844,
  'Unnamed: 0.1': 844,
  'activite': False,
  'activite_conj': False,
  'age': 55,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 845,
  'Unnamed: 0.1': 845,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 29256.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 29256.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 846,
  'Unnamed: 0.1': 846,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 22515.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47662.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 847,
  'Unnamed: 0.1': 847,
  'activite': True,
  'activite_conj': True,
  'age': 58,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 14858.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37350.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 848,
  'Unnamed: 0.1': 848,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 28847.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 44972.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 849,
  'Unnamed: 0.1': 849,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 850,
  'Unnamed: 0.1': 850,
  'activite': False,
  'activite_conj': False,
  'age': 55,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 851,
  'Unnamed: 0.1': 851,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 24022.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24022.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 852,
  'Unnamed: 0.1': 852,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 46777.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46777.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 853,
  'Unnamed: 0.1': 853,
  'activite': False,
  'activite_conj': True,
  'age': 60,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 22196.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22196.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 854,
  'Unnamed: 0.1': 854,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 28118.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53265.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 855,
  'Unnamed: 0.1': 855,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 856,
  'Unnamed: 0.1': 856,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 857,
  'Unnamed: 0.1': 857,
  'activite': True,
  'activite_conj': True,
  'age': 44,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17340.0,
  'salaire_conj': 14487.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 31827.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 858,
  'Unnamed: 0.1': 858,
  'activite': False,
  'activite_conj': False,
  'age': 56,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 859,
  'Unnamed: 0.1': 859,
  'activite': True,
  'activite_conj': True,
  'age': 45,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 2394.0,
  'salaire_conj': 24721.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 27115.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 860,
  'Unnamed: 0.1': 860,
  'activite': False,
  'activite_conj': False,
  'age': 55,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 861,
  'Unnamed: 0.1': 861,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 17942.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35821.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 862,
  'Unnamed: 0.1': 862,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26690.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26690.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 863,
  'Unnamed: 0.1': 863,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 25448.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25448.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 864,
  'Unnamed: 0.1': 864,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 865,
  'Unnamed: 0.1': 865,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 55.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 21503.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21503.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 866,
  'Unnamed: 0.1': 866,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 30020.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 46420.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 867,
  'Unnamed: 0.1': 867,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 33634.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33634.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 868,
  'Unnamed: 0.1': 868,
  'activite': False,
  'activite_conj': False,
  'age': 55,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 869,
  'Unnamed: 0.1': 869,
  'activite': True,
  'activite_conj': False,
  'age': 48,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 870,
  'Unnamed: 0.1': 870,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 30480.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 30480.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 871,
  'Unnamed: 0.1': 871,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 23156.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23156.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 872,
  'Unnamed: 0.1': 872,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 45320.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 70467.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 873,
  'Unnamed: 0.1': 873,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 50623.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 67023.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 874,
  'Unnamed: 0.1': 874,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 19734.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35859.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 875,
  'Unnamed: 0.1': 875,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 41878.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 59639.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 876,
  'Unnamed: 0.1': 876,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 57364.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 57364.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 877,
  'Unnamed: 0.1': 877,
  'activite': True,
  'activite_conj': True,
  'age': 46,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 23087.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 39560.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 878,
  'Unnamed: 0.1': 878,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 24781.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24781.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 879,
  'Unnamed: 0.1': 879,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26044.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26044.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 880,
  'Unnamed: 0.1': 880,
  'activite': False,
  'activite_conj': False,
  'age': 56,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 881,
  'Unnamed: 0.1': 881,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 22683.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47830.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 882,
  'Unnamed: 0.1': 882,
  'activite': True,
  'activite_conj': True,
  'age': 48,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 17700.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17700.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 883,
  'Unnamed: 0.1': 883,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 884,
  'Unnamed: 0.1': 884,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 19676.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19676.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 885,
  'Unnamed: 0.1': 885,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 886,
  'Unnamed: 0.1': 886,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 887,
  'Unnamed: 0.1': 887,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26588.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26588.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 888,
  'Unnamed: 0.1': 888,
  'activite': True,
  'activite_conj': False,
  'age': 50,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 889,
  'Unnamed: 0.1': 889,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 47053.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47053.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 890,
  'Unnamed: 0.1': 890,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 891,
  'Unnamed: 0.1': 891,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 22838.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47985.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 892,
  'Unnamed: 0.1': 892,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 45617.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 70764.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 893,
  'Unnamed: 0.1': 893,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 894,
  'Unnamed: 0.1': 894,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 895,
  'Unnamed: 0.1': 895,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 896,
  'Unnamed: 0.1': 896,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 24254.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49401.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 897,
  'Unnamed: 0.1': 897,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 18025.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 35786.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 898,
  'Unnamed: 0.1': 898,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 16929.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16929.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 899,
  'Unnamed: 0.1': 899,
  'activite': False,
  'activite_conj': False,
  'age': 56,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 900,
  'Unnamed: 0.1': 900,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 20716.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37116.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 901,
  'Unnamed: 0.1': 901,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 902,
  'Unnamed: 0.1': 902,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 903,
  'Unnamed: 0.1': 903,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26397.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26397.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 904,
  'Unnamed: 0.1': 904,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 905,
  'Unnamed: 0.1': 905,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20174.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20174.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 906,
  'Unnamed: 0.1': 906,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 37319.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 55080.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 907,
  'Unnamed: 0.1': 907,
  'activite': False,
  'activite_conj': True,
  'age': 59,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 97851.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 97851.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 908,
  'Unnamed: 0.1': 908,
  'activite': True,
  'activite_conj': False,
  'age': 47,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 909,
  'Unnamed: 0.1': 909,
  'activite': False,
  'activite_conj': False,
  'age': 64,
  'age_conj': 56.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 910,
  'Unnamed: 0.1': 910,
  'activite': True,
  'activite_conj': True,
  'age': 62,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1267.85375977,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 26863.0,
  'salaire_conj': 23492.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 50355.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 911,
  'Unnamed: 0.1': 911,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 21398.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21398.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 912,
  'Unnamed: 0.1': 912,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 19965.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37726.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 913,
  'Unnamed: 0.1': 913,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 18137.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 34537.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 914,
  'Unnamed: 0.1': 914,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 19014.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 28898.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 915,
  'Unnamed: 0.1': 915,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 21763.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21763.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 916,
  'Unnamed: 0.1': 916,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 917,
  'Unnamed: 0.1': 917,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 24455.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40855.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 918,
  'Unnamed: 0.1': 918,
  'activite': False,
  'activite_conj': False,
  'age': 60,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 919,
  'Unnamed: 0.1': 919,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 19969.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37848.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 920,
  'Unnamed: 0.1': 920,
  'activite': False,
  'activite_conj': False,
  'age': 56,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 921,
  'Unnamed: 0.1': 921,
  'activite': True,
  'activite_conj': False,
  'age': 54,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17761.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 922,
  'Unnamed: 0.1': 922,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 43386.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 61147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 923,
  'Unnamed: 0.1': 923,
  'activite': True,
  'activite_conj': True,
  'age': 58,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 39919.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 62411.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 924,
  'Unnamed: 0.1': 924,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 50877.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 50877.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 925,
  'Unnamed: 0.1': 925,
  'activite': True,
  'activite_conj': False,
  'age': 58,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22492.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 926,
  'Unnamed: 0.1': 926,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 24046.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41807.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 927,
  'Unnamed: 0.1': 927,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 928,
  'Unnamed: 0.1': 928,
  'activite': True,
  'activite_conj': True,
  'age': 49,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 13020.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 29145.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 929,
  'Unnamed: 0.1': 929,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 930,
  'Unnamed: 0.1': 930,
  'activite': False,
  'activite_conj': True,
  'age': 59,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 931,
  'Unnamed: 0.1': 931,
  'activite': False,
  'activite_conj': True,
  'age': 63,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 15057.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 15057.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 932,
  'Unnamed: 0.1': 932,
  'activite': True,
  'activite_conj': True,
  'age': 51,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 9441.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25841.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 933,
  'Unnamed: 0.1': 933,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 24329.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 42090.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 934,
  'Unnamed: 0.1': 934,
  'activite': True,
  'activite_conj': False,
  'age': 58,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22492.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 935,
  'Unnamed: 0.1': 935,
  'activite': True,
  'activite_conj': True,
  'age': 53,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 15200.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 40347.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 936,
  'Unnamed: 0.1': 936,
  'activite': False,
  'activite_conj': True,
  'age': 60,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26156.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26156.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 937,
  'Unnamed: 0.1': 937,
  'activite': True,
  'activite_conj': True,
  'age': 62,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -1267.85375977,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 26863.0,
  'salaire_conj': 74631.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 101494.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 938,
  'Unnamed: 0.1': 938,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 939,
  'Unnamed: 0.1': 939,
  'activite': True,
  'activite_conj': False,
  'age': 47,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 9884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 940,
  'Unnamed: 0.1': 940,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 16269.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16269.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 941,
  'Unnamed: 0.1': 941,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 942,
  'Unnamed: 0.1': 942,
  'activite': False,
  'activite_conj': True,
  'age': 64,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 23745.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 23745.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 943,
  'Unnamed: 0.1': 943,
  'activite': True,
  'activite_conj': False,
  'age': 54,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17761.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 944,
  'Unnamed: 0.1': 944,
  'activite': True,
  'activite_conj': True,
  'age': 58,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 14993.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37485.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 945,
  'Unnamed: 0.1': 945,
  'activite': False,
  'activite_conj': False,
  'age': 56,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 946,
  'Unnamed: 0.1': 946,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 17879.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 947,
  'Unnamed: 0.1': 947,
  'activite': True,
  'activite_conj': True,
  'age': 58,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 36155.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 58647.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 948,
  'Unnamed: 0.1': 948,
  'activite': True,
  'activite_conj': True,
  'age': 50,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17879.0,
  'salaire_conj': 19844.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37723.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 949,
  'Unnamed: 0.1': 949,
  'activite': True,
  'activite_conj': True,
  'age': 58,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 28932.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 51424.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 950,
  'Unnamed: 0.1': 950,
  'activite': False,
  'activite_conj': False,
  'age': 55,
  'age_conj': 57.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 951,
  'Unnamed: 0.1': 951,
  'activite': False,
  'activite_conj': True,
  'age': 59,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 49735.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49735.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 952,
  'Unnamed: 0.1': 952,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 5884.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 5884.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 953,
  'Unnamed: 0.1': 953,
  'activite': True,
  'activite_conj': False,
  'age': 58,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22492.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 954,
  'Unnamed: 0.1': 954,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20130.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20130.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 955,
  'Unnamed: 0.1': 955,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 2639.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 956,
  'Unnamed: 0.1': 956,
  'activite': False,
  'activite_conj': True,
  'age': 64,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 957,
  'Unnamed: 0.1': 957,
  'activite': True,
  'activite_conj': True,
  'age': 58,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 46941.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 69433.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 958,
  'Unnamed: 0.1': 958,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 33956.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 33956.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 959,
  'Unnamed: 0.1': 959,
  'activite': False,
  'activite_conj': True,
  'age': 52,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 24110.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24110.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 960,
  'Unnamed: 0.1': 960,
  'activite': False,
  'activite_conj': True,
  'age': 69,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 1259.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 19558.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 19558.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 961,
  'Unnamed: 0.1': 961,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 962,
  'Unnamed: 0.1': 962,
  'activite': False,
  'activite_conj': False,
  'age': 59,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 963,
  'Unnamed: 0.1': 963,
  'activite': True,
  'activite_conj': True,
  'age': 58,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 30994.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 53486.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 964,
  'Unnamed: 0.1': 964,
  'activite': False,
  'activite_conj': False,
  'age': 60,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 965,
  'Unnamed: 0.1': 965,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 47159.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47159.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 966,
  'Unnamed: 0.1': 966,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 23543.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 41304.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 967,
  'Unnamed: 0.1': 967,
  'activite': True,
  'activite_conj': False,
  'age': 38,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -357.462036133,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 21746.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21746.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 968,
  'Unnamed: 0.1': 968,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 969,
  'Unnamed: 0.1': 969,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26176.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26176.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 970,
  'Unnamed: 0.1': 970,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 53285.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 71046.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 971,
  'Unnamed: 0.1': 971,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 49354.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 49354.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 972,
  'Unnamed: 0.1': 972,
  'activite': True,
  'activite_conj': False,
  'age': 46,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16473.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16473.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 973,
  'Unnamed: 0.1': 973,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 67792.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 67792.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 974,
  'Unnamed: 0.1': 974,
  'activite': True,
  'activite_conj': False,
  'age': 51,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16400.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16400.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 975,
  'Unnamed: 0.1': 975,
  'activite': True,
  'activite_conj': True,
  'age': 54,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 17761.0,
  'salaire_conj': 31079.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 48840.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 976,
  'Unnamed: 0.1': 976,
  'activite': True,
  'activite_conj': False,
  'age': 58,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 22492.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 977,
  'Unnamed: 0.1': 977,
  'activite': True,
  'activite_conj': True,
  'age': 58,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 32555.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 55047.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 978,
  'Unnamed: 0.1': 978,
  'activite': True,
  'activite_conj': False,
  'age': 61,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 13575.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 13575.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 979,
  'Unnamed: 0.1': 979,
  'activite': False,
  'activite_conj': False,
  'age': 52,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 980,
  'Unnamed: 0.1': 980,
  'activite': False,
  'activite_conj': True,
  'age': 66,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 1259.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 5543.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 5543.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 981,
  'Unnamed: 0.1': 981,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': True,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 982,
  'Unnamed: 0.1': 982,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 20582.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 20582.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 983,
  'Unnamed: 0.1': 983,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 984,
  'Unnamed: 0.1': 984,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26392.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26392.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 985,
  'Unnamed: 0.1': 985,
  'activite': False,
  'activite_conj': False,
  'age': 55,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 986,
  'Unnamed: 0.1': 986,
  'activite': False,
  'activite_conj': False,
  'age': 71,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 1212.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 987,
  'Unnamed: 0.1': 987,
  'activite': False,
  'activite_conj': True,
  'age': 60,
  'age_conj': 58.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 851.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 851.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 988,
  'Unnamed: 0.1': 988,
  'activite': False,
  'activite_conj': True,
  'age': 59,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 102517.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 102517.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 989,
  'Unnamed: 0.1': 989,
  'activite': True,
  'activite_conj': False,
  'age': 49,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 16125.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16125.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 990,
  'Unnamed: 0.1': 990,
  'activite': False,
  'activite_conj': True,
  'age': 60,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 21594.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 21594.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 991,
  'Unnamed: 0.1': 991,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 2,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 16688.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 16688.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 992,
  'Unnamed: 0.1': 992,
  'activite': False,
  'activite_conj': True,
  'age': 55,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 24291.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 24291.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 993,
  'Unnamed: 0.1': 993,
  'activite': True,
  'activite_conj': True,
  'age': 58,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -490.23760986300005,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 22492.0,
  'salaire_conj': 28233.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 50725.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 994,
  'Unnamed: 0.1': 994,
  'activite': False,
  'activite_conj': True,
  'age': 57,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': False,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 0,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 13974.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 13974.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 995,
  'Unnamed: 0.1': 995,
  'activite': True,
  'activite_conj': True,
  'age': 47,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 9884.0,
  'salaire_conj': 27822.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 37706.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 996,
  'Unnamed: 0.1': 996,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 3,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 47956.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 47956.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 997,
  'Unnamed: 0.1': 997,
  'activite': False,
  'activite_conj': False,
  'age': 57,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 4,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 0.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 998,
  'Unnamed: 0.1': 998,
  'activite': True,
  'activite_conj': False,
  'age': 53,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': True,
  'emploi_conj': False,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': -962.671264648,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 25147.0,
  'salaire_conj': 0.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 25147.0,
  'type_fam': 'Couples'},
 {'Unnamed: 0': 999,
  'Unnamed: 0.1': 999,
  'activite': False,
  'activite_conj': True,
  'age': 56,
  'age_conj': 59.0,
  'age_dec_1': 0.0,
  'anyone': 1.0,
  'emploi': False,
  'emploi_conj': True,
  'enfant': True,
  'etudes': False,
  'etudes_conj': False,
  'handicap': False,
  'handicap_conj': False,
  'irpp': 0.0,
  'nb_enf': 1,
  'retraite': 0.0,
  'retraite_conj': 0.0,
  'salaire': 0.0,
  'salaire_conj': 26663.0,
  'sexe': 'femme',
  'sexe_conj': 'homme',
  'statut_marital': 1,
  'statut_marital_conj': 1.0,
  'taxable_variable': 26663.0,
  'type_fam': 'Couples'},
 ...]

In [10]:
def anyone(family):
    return True

def taxable_variable(family):
    return family['salaire'] + family['salaire_conj']

def taxable_variable(family):
    return family['salaire'] + family['salaire_conj']

def revdisp(family):
    return family['salaire'] + family['salaire_conj'] + family['retraite'] + family['retraite_conj'] + family['irpp']


population.declare_computed_variables({
        'anyone': anyone,
        'taxable_variable': taxable_variable
    })

Plots Revenu disponible before reform


In [ ]:
revdisp = list(family['revdisp'] for family in population._population)
show_histogram(revdisp, 'Distribution of revenu disponible')

Define the constraints of your reform


In [ ]:
reform = Reform(
    population=population,
    target_variable='revdisp',
    taxable_variable='taxable_variable',

    # Constraints
    max_cost=0,
    benefits_constraints=[
        'per_child',
        'per_declarant_above_65',
        'if_one_declarant_above_24_or_has_children',
        ],
    taxes_constraints=[
        'anyone',
        'per_child',
        ],
    tax_threshold_constraints=[
        'anyone',
        'per_child'
        ],
    max_evals=5000
    )

In [ ]:
reform.show_stats()

In [ ]:
reform.draw_ginis()

In [ ]:
reform.show_constraints_value('benefit')

In [ ]:
reform.show_constraints_value('tax_rate')

In [ ]:
reform.show_constraints_value('tax_threshold')

In [ ]:
new_pop = copy.deepcopy(population._population)

for i in range(len(new_pop)):
    new_pop[i]['reform'] = reform.simulated_results[i] 

def plot_for_population(pop):
    revenu_imposable = list(family['taxable_variable'] for family in pop)
    revdisp = list(family['revdisp'] for family in pop)
    reform = list(family['reform'] for family in pop)

    multi_scatter('Revenu disponible for different people before / after reforme', 'Revenu initial', 'Revenu disponible', [
                  {'x':revenu_imposable, 'y':reform, 'label':'Reform', 'color':'blue'},
                  {'x':revenu_imposable, 'y':revdisp, 'label':'Original', 'color':'red'},
              ])

In [ ]:
un_enfant_pop = list(filter(lambda x: x.get('per_child', 0) == 0
                                  and x.get('age_dec_1', 0) < 65
                                  and x.get('age_dec_2', 0) < 65,
                            new_pop))

plot_for_population(un_enfant_pop)

Plots revenu disponible after reform


In [ ]:
xmin = 0
xmax = 60000
nb_buckets = 35

bins = np.linspace(xmin, xmax, nb_buckets)

plt.hist(revdisp, bins, alpha=0.5, label='current')
plt.hist(reform.simulated_results, bins, alpha=0.5, label='reform')
plt.legend(loc='upper right')
plt.show()

Distribution of the changes in revenu in euros


In [ ]:
difference = list(reform.simulated_results[i] - revdisp[i] for i in range(len(reform.simulated_results)))

show_histogram(difference, 'Changes in revenu')

Distribution of the change in revenu in percentage


In [ ]:
percentage_difference = list(100 * percent_diff(reform.simulated_results[i], revdisp[i]) for i in range(len(reform.simulated_results)))

show_histogram(percentage_difference, 'Changes in revenu')

Change as a function of the number of children


In [ ]:
nb_children = list((population._population[i].get('per_child', 0)  for i in range(len(population._population)))) 

scatter_plot(nb_children, difference, 'Children', 'Difference reform - current', alpha=0.05)

Change as a function of the age of declarant 1

A scatter plot is better than a thousand points #ChineseProverb


In [ ]:
age_dec1 = list((population._population[i].get('age_dec_1', 0)  for i in range(len(population._population)))) 

scatter_plot(age_dec1, difference, 'Age declarant 1', 'Difference reform - current', alpha=0.1)

Most important: Edge Cases

This is the heart of this tool: by seeing the worse cases, you can discover when the current legislation is smarter than yours (or the other way), and improve it further


In [ ]:
order = sorted(range(len(reform.simulated_results)), key=lambda k: -(reform.simulated_results[k] - revdisp[k]))

data = {}

possible_keys = set()
for i in order:
    for key in population._raw_population[i]:
        if key != 'year':
            possible_keys.add(key)

for i in order:
    # Adding the diff with the reform.
    differences = data.get('difference', [])
    differences.append(int(reform.simulated_results[i] - revdisp[i]))
    data['difference'] = differences

    for key in possible_keys:
        new_vals = data.get(key, [])
        value = population._raw_population[i].get(key, '')
        if type(value) == float:
            value = int(value)
        new_vals.append(value)
        data[key] = new_vals

    # Adding reformed line.
    reforms = data.get('reform', [])
    reforms.append(int(reform.simulated_results[i]))
    data['reform'] = reforms

df = pd.DataFrame(data=data)
df.set_index('difference', inplace=True)
qgrid.show_grid(df)