Donor Imputation#
Execution: banff.donorimp()
SDE function types: Treatment
Input status flags: FTI (required), FTE(optional), I– (optional)
Output status flags: IDN
Description#
Performs nearest neighbour donor imputation such that each imputed record satisfies the specified post-imputation edits.
The donorimp procedure splits records into recipients (records requiring imputation) and donors (records not requiring imputation that pass the edits). For each recipient, the procedure performs the following steps:
From the fields in the edits, a subset are chosen as matching fields for the purpose of distance calculations. This selection can vary depending on which fields require imputation. Users can also specify must-match fields (
must_match
), which will automatically be included in distance calculations alongside the system-selected ones.Matching fields are transformed into normalized ranks to remove the effect of scale and clustering from the data. Without this transformation, original data with wide ranges, such as dollar values, would always dominate the distance calculation.
Distances between the recipient and donors are calculated using a L-$\infty$ norm on the transformed matching fields. This is sometimes referred to as the minimax distance because the closest donor is the one with the smallest maximum absolute difference between the transformed values of its matching fields and those of the recipient.
From the donors, a search algorithm is used to efficiently find the closest donor whose values allow the recipient record to pass the user-specified post-imputation edits (
post_edits
). These are typically a more relaxed form of the edits to ensure a donor can be found.
Note: The Banff distance metric will usually select different donors than a typical Euclidean distance metric. This is by design. When using Euclidean distance metrics, scale differences and skewed distributions in economic data typically result in a distance metric that is dominated by a single field such as revenue. The Banff distance metric ensures that all matching fields are given the same weight in the distance calculation.
Recipients are defined as any record with at least one field within the edits requiring imputation, as indicated by an FTI (Field to Impute) flag on the input status (instatus
) file. Donors are defined as any record satisfying all the edits that is not a recipient. The donorimp procedure requires a set of edits; for a version of donor imputation that does not, please see the `massimp`` procedure.
There are a number of ways to exclude records or values from the donor pool. Records can be excluded using the exclude_where_indata
or data_excl_var
parameters. This does not exclude them from the procedure completely; they may still be included as recipients if they require imputation. Records that have previously been imputed can also be excluded from the donor pool using the eligdon
(eligible donor) parameter. The parameter n_limit
will limit the number of times a single donor is used for imputation. Users may sometimes identify values that do not require imputation, but are sufficiently unusual that they should not be donated to other records; these should be flagged as FTE (Field to Exclude) on the instatus file.
The Banff distance metric does not accommodate categorical variables. Instead, users may create by-groups by specifying by
variables. These by-groups act as imputation classes. Use the min_donors
and percent_donors
parameters to ensure an appropriate number or ratio of recipients and donors exist in each imputation class before performing imputation.
For a full mathematical description of the procedure methods, with examples, please see the Functional Description.
Input and output tables#
Descriptions of input and output tables are given below. Banff supports a number of input and output formats; please see the Banff User Guide for more information.
Input table |
Description |
---|---|
indata |
Input statistical data. Mandatory. |
instatus |
Input status file containing FTI, FTE and I– status flags. Mandatory. |
Output table |
Description |
---|---|
outdata |
Output statistical table containing imputed data. |
outstatus |
Output status file identifying imputed fields with IDN status flags, and their values after imputation. |
outdonormap |
Output table of recipient-donor pairs for successfully imputed records. |
outmatching_fields |
Output table of matching fields for each recipient. |
For details on the content of output tables, please see the Output Tables document.
Parameters#
Parameter |
Python type |
Description |
---|---|---|
unit_id |
str |
Identify key variable (unit identifier) on indata. Mandatory. |
edits |
str |
List of consistency edits. Mandatory. |
post_edits |
str |
List of edits a recipient must satisfy after imputation. |
min_donors |
int |
Minimum number of donors needed in a by-group to perform imputation. |
percent_donors |
float |
Minimum percentage of donors needed in a by-group to perform imputation. |
n |
int |
Maximum number of donors to try for a given recipient. |
eligdon |
str |
Identify eligible donors as ‘ANY’ (include all potential donors) or ‘ORIGINAL’ (exclude records with imputed values). |
n_limit |
int |
Limit the number of times a donor can be used. |
random |
bool |
Randomly select donors for recipients without matching fields. |
rand_num_var |
str |
Identify random number variable on indata. |
seed |
float |
Specify a seed for the random number generator. |
mrl |
float |
Multiplier ratio limit used to limit number of times a donor can be used. |
must_match |
str |
List of variables on indata to be used in distance calculations. |
data_excl_var |
str |
Identify donor exclusion variable on indata. |
exclude_where_indata |
str |
Donor exclusion expression using SQL syntax. |
accept_negative |
bool |
Treat negative values as valid. Default=False. |
by |
str |
Variable(s) used to partition indata into by-groups for independent processing. |
prefill_by_vars |
bool |
Adds by-group variable(s) to input status file(s) to improve performance. Default=True. |
presort |
bool |
Sorts input tables before processing, according to procedure requirements. Default=True. |
no_by_stats |
bool |
Reduces log output by suppressing by-group specific messages. Default=False. |
display_level |
int |
Value (0 or 1) to request detail output to the log in relation to the random number variable. Default=0. |
Notes#
Multiple equivalent solutions#
In some cases, for a given recipient, there may be multiple equidistant donors (i.e. having the same distance from the recipient) whose values would allow the recipient to pass the edits. When this occurs, the procedure selects one of these solutions at random.
For development or testing purposes, users may wish to produce consistent results over multiple runs of the procedure, and may do so using the seed
or rand_num_var
parameters. Both ensure that the same solutions will be selected from one run to the next, if executed on the same set of inputs. Note that if both seed
and rand_num_var
are specified, seed
is ignored. If neither is specified, the system generates a default seed.
Limiting the repeated use of donors#
Users may limit the repeated use of donors with the interrelated n_limit
and mrl
parameters. The donor limit is calculated as follows, depending on whether one or both are specified:
|
|
Donor Limit |
---|---|---|
No |
No |
Number of times a donor can be used is unlimited. |
No |
Yes |
round $(mrl*(recipients/donors))$. |
Yes |
No |
|
Yes |
Yes |
round $(max(n$ _ $limit,mrl*(recipients/donors)))$. |
When limiting the number of donors with the n_limit
parameter, the number of remaining donors may end up being less than min_donors
. In such a case, mass imputation will continue and ignore min_donors
which was validated at the beginning. The same applies for percent_donors
.