Synthesis for a variable nested within another variable.
syn.nested.Rd
Synthesizes one variable (y
) from another one (x
)
when y
is nested in the categories of x
. A bootstrap
sample is created from the original values of y
within each category
of xp
(the synthesised values of the grouping variable).
Arguments
- y
an original data vector of length
n
for the nested variable.- x
an original data vector of length
n
for the variable within whichy
is nested.- xp
a vector of length
k
with synthetic values ofx
.- smoothing
smoothing method. See
syn.smooth
.- cont.na
when y is numeric this can be a list or a vector giving values of
y
that indicate missing values.- ...
additional parameters.
Details
An example would be when x
is a classification
of occupations and y
is a more detailed sub-classification. It is
intended that x
is a categorical (factor) variable.
A warning will be issued if the original y
is not nested within x
.
A variable synthesised by syn.nested()
is automatically excluded from
predicting later variables because it will provide no extra information,
given its grouping variable.
syn.nested()
is also used for the final synthesis of variables in
syn()
when the option numtocat
is used to synthesise numerical
variables as groups.