зеркало из https://github.com/microsoft/wpa.git
198 строки
6.7 KiB
R
198 строки
6.7 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/create_stacked.R
|
|
\name{create_stacked}
|
|
\alias{create_stacked}
|
|
\title{Horizontal stacked bar plot for any metric}
|
|
\usage{
|
|
create_stacked(
|
|
data,
|
|
hrvar = "Organization",
|
|
metrics = c("Meeting_hours", "Email_hours"),
|
|
mingroup = 5,
|
|
return = "plot",
|
|
stack_colours = c("#1d627e", "#34b1e2", "#b4d5dd", "#adc0cb"),
|
|
percent = FALSE,
|
|
plot_title = "Collaboration Hours",
|
|
plot_subtitle = paste("Average by", tolower(camel_clean(hrvar))),
|
|
legend_lab = NULL,
|
|
rank = "descending",
|
|
xlim = NULL,
|
|
text_just = 0.5,
|
|
text_colour = "#FFFFFF"
|
|
)
|
|
}
|
|
\arguments{
|
|
\item{data}{A Standard Person Query dataset in the form of a data frame.}
|
|
|
|
\item{hrvar}{String containing the name of the HR Variable by which to split
|
|
metrics. Defaults to \code{"Organization"}. To run the analysis on the total
|
|
instead of splitting by an HR attribute, supply \code{NULL} (without quotes).}
|
|
|
|
\item{metrics}{A character vector to specify variables to be used
|
|
in calculating the "Total" value, e.g. c("Meeting_hours", "Email_hours").
|
|
The order of the variable names supplied determine the order in which they
|
|
appear on the stacked plot.}
|
|
|
|
\item{mingroup}{Numeric value setting the privacy threshold / minimum group
|
|
size. Defaults to 5.}
|
|
|
|
\item{return}{Character vector specifying what to return, defaults to "plot".
|
|
Valid inputs are "plot" and "table".}
|
|
|
|
\item{stack_colours}{A character vector to specify the colour codes for the stacked bar charts.}
|
|
|
|
\item{percent}{Logical value to determine whether to show labels as
|
|
percentage signs. Defaults to \code{FALSE}.}
|
|
|
|
\item{plot_title}{String. Option to override plot title.}
|
|
|
|
\item{plot_subtitle}{String. Option to override plot subtitle.}
|
|
|
|
\item{legend_lab}{String. Option to override legend title/label. Defaults to
|
|
\code{NULL}, where the metric name will be populated instead.}
|
|
|
|
\item{rank}{String specifying how to rank the bars. Valid inputs are:
|
|
\itemize{
|
|
\item \code{"descending"} - ranked highest to lowest from top to bottom (default).
|
|
\item \code{"ascending"} - ranked lowest to highest from top to bottom.
|
|
\item \code{NULL} - uses the original levels of the HR attribute.
|
|
}}
|
|
|
|
\item{xlim}{An option to set max value in x axis.}
|
|
|
|
\item{text_just}{\ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#experimental}{\figure{lifecycle-experimental.svg}{options: alt='[Experimental]'}}}{\strong{[Experimental]}} A numeric value
|
|
controlling for the horizontal position of the text labels. Defaults to
|
|
0.5.}
|
|
|
|
\item{text_colour}{\ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#experimental}{\figure{lifecycle-experimental.svg}{options: alt='[Experimental]'}}}{\strong{[Experimental]}} String to specify
|
|
colour to use for the text labels. Defaults to \code{"#FFFFFF"}.}
|
|
}
|
|
\value{
|
|
Returns a 'ggplot' object by default, where 'plot' is passed in \code{return}.
|
|
When 'table' is passed, a summary table is returned as a data frame.
|
|
}
|
|
\description{
|
|
Creates a sum total calculation using selected metrics,
|
|
where the typical use case is to create different definitions of
|
|
collaboration hours.
|
|
Returns a stacked bar plot by default.
|
|
Additional options available to return a summary table.
|
|
}
|
|
\examples{
|
|
sq_data \%>\%
|
|
create_stacked(hrvar = "LevelDesignation",
|
|
metrics = c("Meeting_hours", "Email_hours"),
|
|
return = "plot")
|
|
|
|
sq_data \%>\%
|
|
create_stacked(hrvar = "FunctionType",
|
|
metrics = c("Meeting_hours",
|
|
"Email_hours",
|
|
"Call_hours",
|
|
"Instant_Message_hours"),
|
|
return = "plot",
|
|
rank = "ascending")
|
|
|
|
sq_data \%>\%
|
|
create_stacked(hrvar = "FunctionType",
|
|
metrics = c("Meeting_hours",
|
|
"Email_hours",
|
|
"Call_hours",
|
|
"Instant_Message_hours"),
|
|
return = "table")
|
|
|
|
}
|
|
\seealso{
|
|
Other Visualization:
|
|
\code{\link{afterhours_dist}()},
|
|
\code{\link{afterhours_fizz}()},
|
|
\code{\link{afterhours_line}()},
|
|
\code{\link{afterhours_rank}()},
|
|
\code{\link{afterhours_summary}()},
|
|
\code{\link{afterhours_trend}()},
|
|
\code{\link{collaboration_area}()},
|
|
\code{\link{collaboration_dist}()},
|
|
\code{\link{collaboration_fizz}()},
|
|
\code{\link{collaboration_line}()},
|
|
\code{\link{collaboration_rank}()},
|
|
\code{\link{collaboration_sum}()},
|
|
\code{\link{collaboration_trend}()},
|
|
\code{\link{create_bar_asis}()},
|
|
\code{\link{create_bar}()},
|
|
\code{\link{create_boxplot}()},
|
|
\code{\link{create_bubble}()},
|
|
\code{\link{create_dist}()},
|
|
\code{\link{create_fizz}()},
|
|
\code{\link{create_inc}()},
|
|
\code{\link{create_line_asis}()},
|
|
\code{\link{create_line}()},
|
|
\code{\link{create_period_scatter}()},
|
|
\code{\link{create_rank}()},
|
|
\code{\link{create_sankey}()},
|
|
\code{\link{create_scatter}()},
|
|
\code{\link{create_tracking}()},
|
|
\code{\link{create_trend}()},
|
|
\code{\link{email_dist}()},
|
|
\code{\link{email_fizz}()},
|
|
\code{\link{email_line}()},
|
|
\code{\link{email_rank}()},
|
|
\code{\link{email_summary}()},
|
|
\code{\link{email_trend}()},
|
|
\code{\link{external_network_plot}()},
|
|
\code{\link{hr_trend}()},
|
|
\code{\link{hrvar_count}()},
|
|
\code{\link{hrvar_trend}()},
|
|
\code{\link{internal_network_plot}()},
|
|
\code{\link{keymetrics_scan}()},
|
|
\code{\link{meeting_dist}()},
|
|
\code{\link{meeting_fizz}()},
|
|
\code{\link{meeting_line}()},
|
|
\code{\link{meeting_quality}()},
|
|
\code{\link{meeting_rank}()},
|
|
\code{\link{meeting_summary}()},
|
|
\code{\link{meeting_trend}()},
|
|
\code{\link{meetingtype_dist_ca}()},
|
|
\code{\link{meetingtype_dist_mt}()},
|
|
\code{\link{meetingtype_dist}()},
|
|
\code{\link{meetingtype_summary}()},
|
|
\code{\link{mgrcoatt_dist}()},
|
|
\code{\link{mgrrel_matrix}()},
|
|
\code{\link{one2one_dist}()},
|
|
\code{\link{one2one_fizz}()},
|
|
\code{\link{one2one_freq}()},
|
|
\code{\link{one2one_line}()},
|
|
\code{\link{one2one_rank}()},
|
|
\code{\link{one2one_sum}()},
|
|
\code{\link{one2one_trend}()},
|
|
\code{\link{period_change}()},
|
|
\code{\link{workloads_dist}()},
|
|
\code{\link{workloads_fizz}()},
|
|
\code{\link{workloads_line}()},
|
|
\code{\link{workloads_rank}()},
|
|
\code{\link{workloads_summary}()},
|
|
\code{\link{workloads_trend}()},
|
|
\code{\link{workpatterns_area}()},
|
|
\code{\link{workpatterns_rank}()}
|
|
|
|
Other Flexible:
|
|
\code{\link{create_bar_asis}()},
|
|
\code{\link{create_bar}()},
|
|
\code{\link{create_boxplot}()},
|
|
\code{\link{create_bubble}()},
|
|
\code{\link{create_dist}()},
|
|
\code{\link{create_fizz}()},
|
|
\code{\link{create_hist}()},
|
|
\code{\link{create_inc}()},
|
|
\code{\link{create_line_asis}()},
|
|
\code{\link{create_line}()},
|
|
\code{\link{create_period_scatter}()},
|
|
\code{\link{create_rank}()},
|
|
\code{\link{create_sankey}()},
|
|
\code{\link{create_scatter}()},
|
|
\code{\link{create_tracking}()},
|
|
\code{\link{create_trend}()},
|
|
\code{\link{period_change}()}
|
|
}
|
|
\concept{Flexible}
|
|
\concept{Visualization}
|