1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/evaluation.R
\name{adjust}
\alias{adjust}
\title{Adjust Estimates by Categorical Variables}
\usage{
adjust(...)
}
\arguments{
\item{...}{variables to adjust by, e.g. \code{adjust(factor(v1), v2, v3)}}
}
\value{
Returns a list of promises of the variables supplied which can be
evaluated.
}
\description{
This function is only intended to be used within a formula
when supplied to e.g. \verb{[survtab_ag]} and should not be
used elsewhere.
}
\examples{
y ~ x + adjust(z)
}
|