1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/sampleCat.R
\name{sampleCat}
\alias{sampleCat}
\title{Random aggregation function for a factor variable}
\usage{
sampleCat(x, weights = NULL)
}
\arguments{
\item{x}{factor vector}
\item{weights}{numeric vector providing weights for the observations in x}
}
\description{
The function sampleCat samples with probabilites corresponding to the
occurrence of the level in the NNs.
}
\seealso{
Other imputation methods:
\code{\link{hotdeck}()},
\code{\link{impPCA}()},
\code{\link{irmi}()},
\code{\link{kNN}()},
\code{\link{matchImpute}()},
\code{\link{medianSamp}()},
\code{\link{rangerImpute}()},
\code{\link{regressionImp}()}
}
\concept{imputation methods}
|