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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/paired.internal.R
\name{paired.internal}
\alias{paired.internal}
\alias{na.paired}
\title{Helper functions for paired}
\usage{
na.paired(missings = c("in.both", "fill", "asis"))
}
\arguments{
\item{missings}{A character string denoting which action to take. See "Details", below.}
}
\value{
\code{na.paired} returns a function used to subset data.frames in \code{\link{paired}}.
}
\description{
A set of helper functions for \code{\link{paired}}.
}
\details{
All methods subset out any NA time points or IDs.
\code{"in.both"} (the default) subsets the data.frame to individuals who appear at both time points.
\code{"fill"} adds explicit missings for the people missing second time points.
\code{"asis"} does nothing to add or remove missings.
}
\seealso{
\link{tableby.internal}
}
|