Population stability index quantifies the change of a distribution of a variable by comparing data samples in two time periods. It is very commonly used to measure shifts in scores.
It is calculated as follows:
1) The sample from base period is discretized. Usually it is partitioned into deciles
2) The sample from target period is discretized using the same intervals as in first step
$PSI = \sum_{i} (A_{i} - B_{i}) \cdot ln(\frac{A_{i}}{B_{i}})$
Where:
$A_{i}$ - share of i-th bin in base period.
$B_{i}$ - share of i-th bin in target period.
Question: What should be done when one of the bins from target sample is empty?