This commit is contained in:
agdamsbo 2018-10-10 12:00:41 +02:00
parent a82d22f555
commit 0361de40ab
4 changed files with 8 additions and 8 deletions

View File

@ -1,8 +1,8 @@
#' Print regression results according to STROBE
#'
#' Printable table of linear regression analysis of group vs var for meas. By group.
#' Printable table of three dimensional regression analysis of group vs var for meas. By group.
#' @param meas outcome meassure variable name in data-data.frame as a string. Can be numeric or factor. Result is calculated accordingly.
#' @param var exposure variable to compare against (active vs placebo). As string.
#' @param var binary exposure variable to compare against (active vs placebo). As string.
#' @param groups groups to compare, as string.
#' @param adj variables to adjust for, as string.
#' @param data dataframe of data.

View File

@ -1,8 +1,8 @@
#' Print regression results according to STROBE
#'
#' Printable table of linear regression analysis of group vs var for meas. By var.
#' Printable table of three dimensional regression analysis of group vs var for meas. By var.
#' @param meas outcome meassure variable name in data-data.frame as a string. Can be numeric or factor. Result is calculated accordingly.
#' @param var exposure variable to compare against (active vs placebo). As string.
#' @param var binary exposure variable to compare against (active vs placebo). As string.
#' @param groups groups to compare, as string.
#' @param adj variables to adjust for, as string.
#' @param data dataframe of data.

View File

@ -9,7 +9,7 @@ strobe_diff_bygroup(meas, var, group, adj, data, dec = 2)
\arguments{
\item{meas}{outcome meassure variable name in data-data.frame as a string. Can be numeric or factor. Result is calculated accordingly.}
\item{var}{exposure variable to compare against (active vs placebo). As string.}
\item{var}{binary exposure variable to compare against (active vs placebo). As string.}
\item{adj}{variables to adjust for, as string.}
@ -20,7 +20,7 @@ strobe_diff_bygroup(meas, var, group, adj, data, dec = 2)
\item{groups}{groups to compare, as string.}
}
\description{
Printable table of linear regression analysis of group vs var for meas. By group.
Printable table of three dimensional regression analysis of group vs var for meas. By group.
}
\examples{
strobe_diff_bygroup()

View File

@ -9,7 +9,7 @@ strobe_diff_byvar(meas, var, group, adj, data, dec = 2)
\arguments{
\item{meas}{outcome meassure variable name in data-data.frame as a string. Can be numeric or factor. Result is calculated accordingly.}
\item{var}{exposure variable to compare against (active vs placebo). As string.}
\item{var}{binary exposure variable to compare against (active vs placebo). As string.}
\item{adj}{variables to adjust for, as string.}
@ -20,7 +20,7 @@ strobe_diff_byvar(meas, var, group, adj, data, dec = 2)
\item{groups}{groups to compare, as string.}
}
\description{
Printable table of linear regression analysis of group vs var for meas. By var.
Printable table of three dimensional regression analysis of group vs var for meas. By var.
}
\examples{
strobe_diff_byvar()