19. Calculation of individual level parametersΒΆ

Calculation of the individual level parameters for the model defined in 5a. Mixture of logit models with Monte-Carlo integration.

Michel Bierlaire, EPFL Thu Jun 26 2025, 15:55:41

import sys

from IPython.core.display_functions import display
from pandas.core.interchange.dataframe_protocol import DataFrame

See the data processing script: Data preparation for Swissmetro.

from swissmetro_data import (
    CAR_AV_SP,
    CAR_CO_SCALED,
    CAR_TT_SCALED,
    CHOICE,
    SM_AV,
    SM_COST_SCALED,
    SM_TT_SCALED,
    TRAIN_AV_SP,
    TRAIN_COST_SCALED,
    TRAIN_TT_SCALED,
    database,
)

from biogeme.biogeme import BIOGEME
from biogeme.expressions import Beta, Draws, MonteCarlo
from biogeme.models import logit
from biogeme.results_processing import EstimationResults

Parameters. The initial value is irrelevant.

asc_car = Beta('asc_car', 0, None, None, 0)
asc_train = Beta('asc_train', 0, None, None, 0)
b_cost = Beta('b_cost', 0, None, None, 0)

Define a random parameter, normally distributed, designed to be used for Monte-Carlo simulation.

b_time = Beta('b_time', 0, None, None, 0)
b_time_s = Beta('b_time_s', 1, None, None, 0)
b_time_rnd = b_time + b_time_s * Draws('b_time_rnd', 'NORMAL')

Retrieve estimation results

result_file_name = 'saved_results/b05a_normal_mixture.yaml'
try:
    the_estimation_results = EstimationResults.from_yaml_file(filename=result_file_name)
except FileNotFoundError:
    print(f'File {result_file_name} is not available.')
    sys.exit()

Definition of the utility functions.

v_train = asc_train + b_time_rnd * TRAIN_TT_SCALED + b_cost * TRAIN_COST_SCALED
v_swissmetro = b_time_rnd * SM_TT_SCALED + b_cost * SM_COST_SCALED
v_car = asc_car + b_time_rnd * CAR_TT_SCALED + b_cost * CAR_CO_SCALED

Associate utility functions with the numbering of alternatives.

v = {1: v_train, 2: v_swissmetro, 3: v_car}

Associate the availability conditions with the alternatives.

av = {1: TRAIN_AV_SP, 2: SM_AV, 3: CAR_AV_SP}

Conditional on b_time_rnd, we have a logit model (called the kernel).

prob_chosen = logit(v, av, CHOICE)

Numerator and denominator of the formula for individual parameters.

numerator = MonteCarlo(b_time_rnd * prob_chosen)
denominator = MonteCarlo(prob_chosen)
simulate = {
    'Numerator': numerator,
    'Denominator': denominator,
    'Choice': CHOICE,
}
biosim = BIOGEME(database, simulate, number_of_draws=10_000)
sim: DataFrame = biosim.simulate(the_estimation_results.get_beta_values())
sim['Individual-level parameters'] = sim['Numerator'] / sim['Denominator']

display(sim)
      Numerator  Denominator  Choice  Individual-level parameters
0     -1.717219     0.637238     2.0                    -2.694783
1     -1.782196     0.665118     2.0                    -2.679519
2     -1.660481     0.609341     2.0                    -2.725043
3     -1.090839     0.438512     2.0                    -2.487591
4     -1.661974     0.635237     2.0                    -2.616306
...         ...          ...     ...                          ...
6763  -0.214293     0.161875     1.0                    -1.323815
6764  -0.199393     0.162637     1.0                    -1.225997
6765  -0.170228     0.145554     1.0                    -1.169520
6766  -0.117869     0.134167     1.0                    -0.878518
6767  -0.228289     0.171748     1.0                    -1.329209

[6768 rows x 4 columns]

Total running time of the script: (0 minutes 29.210 seconds)

Gallery generated by Sphinx-Gallery