зеркало из https://github.com/microsoft/wpa.git
32 строки
1.1 KiB
R
32 строки
1.1 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/totals_reorder.R
|
|
\name{totals_reorder}
|
|
\alias{totals_reorder}
|
|
\title{Reorder a value to the top of the summary table}
|
|
\usage{
|
|
totals_reorder(data, target_col, target_value = "Total")
|
|
}
|
|
\arguments{
|
|
\item{data}{Summary table in the form of a data frame.}
|
|
|
|
\item{target_col}{Character value of the column in which to reorder}
|
|
|
|
\item{target_value}{Character value of the value in \code{target_col} to match}
|
|
}
|
|
\description{
|
|
For a given data frame, reorder a row to the first row
|
|
of that data frame through matching a \emph{value} of a \emph{variable}. The intended
|
|
usage of this function is to be used for reordering the "Total" row,
|
|
and \emph{not} with "flat" data. This can be used in conjunction with \code{totals_bind()},
|
|
which is used to create a "Total" row in the data.
|
|
}
|
|
\examples{
|
|
sq_data \%>\%
|
|
totals_bind(target_col = "LevelDesignation",
|
|
target_value = "Total") \%>\%
|
|
collab_sum(hrvar = "LevelDesignation",
|
|
return = "table") \%>\%
|
|
totals_reorder(target_col = "group", target_value = "Total")
|
|
|
|
}
|