-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathmake.predictorMatrix.Rd
35 lines (33 loc) · 1.15 KB
/
make.predictorMatrix.Rd
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
30
31
32
33
34
35
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/predictorMatrix.R
\name{make.predictorMatrix}
\alias{make.predictorMatrix}
\title{Creates a \code{predictorMatrix} argument}
\usage{
make.predictorMatrix(data, blocks = make.blocks(data), predictorMatrix = NULL)
}
\arguments{
\item{data}{A \code{data.frame} with the source data}
\item{blocks}{An optional specification for blocks of variables in
the rows. The default assigns each variable in its own block.}
\item{predictorMatrix}{A predictor matrix from which rows with the same
names are copied into the output predictor matrix.}
}
\value{
A matrix
}
\description{
This helper function creates a valid \code{predictMatrix}. The
\code{predictorMatrix} is an argument to the \code{mice} function.
It specifies the target variable or block in the rows, and the
predictor variables on the columns. An entry of \code{0} means that
the column variable is NOT used to impute the row variable or block.
A nonzero value indicates that it is used.
}
\examples{
make.predictorMatrix(nhanes)
make.predictorMatrix(nhanes, blocks = make.blocks(nhanes, "collect"))
}
\seealso{
\code{\link{make.blocks}}
}