2020-10-27 00:21:24 +03:00
|
|
|
% Generated by roxygen2: do not edit by hand
|
|
|
|
% Please edit documentation in R/workpatterns_area.R
|
|
|
|
\name{workpatterns_area}
|
|
|
|
\alias{workpatterns_area}
|
|
|
|
\title{Create an area plot of emails and IMs by hour of the day}
|
|
|
|
\usage{
|
|
|
|
workpatterns_area(
|
|
|
|
data,
|
|
|
|
hrvar = "Organization",
|
|
|
|
mingroup = 5,
|
2021-02-03 14:28:15 +03:00
|
|
|
signals = c("email", "IM"),
|
2020-10-27 00:21:24 +03:00
|
|
|
return = "plot",
|
|
|
|
values = "percent",
|
|
|
|
start_hour = "0900",
|
|
|
|
end_hour = "1700"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
\arguments{
|
|
|
|
\item{data}{A data frame containing data from the Hourly Collaboration query.}
|
|
|
|
|
2021-03-05 17:05:00 +03:00
|
|
|
\item{hrvar}{HR Variable by which to split metrics. Accepts a character
|
|
|
|
vector, defaults to \code{"Organization"} but accepts any character vector, e.g.
|
|
|
|
\code{"LevelDesignation"}}
|
2020-10-27 00:21:24 +03:00
|
|
|
|
2021-03-05 17:05:00 +03:00
|
|
|
\item{mingroup}{Numeric value setting the privacy threshold / minimum group
|
|
|
|
size, defaults to 5.}
|
2020-10-27 00:21:24 +03:00
|
|
|
|
2021-03-02 03:13:50 +03:00
|
|
|
\item{signals}{Character vector to specify which collaboration metrics to
|
|
|
|
use:
|
2021-02-03 14:28:15 +03:00
|
|
|
\itemize{
|
2021-03-02 03:13:50 +03:00
|
|
|
\item a combination of signals, such as \code{c("email", "IM")} (default)
|
|
|
|
\item \code{"email"} for emails only
|
|
|
|
\item \code{"IM"} for Teams messages only
|
|
|
|
\item \code{"unscheduled_calls"} for Unscheduled Calls only
|
|
|
|
\item \code{"meetings"} for Meetings only
|
2021-02-03 14:28:15 +03:00
|
|
|
}}
|
|
|
|
|
2021-03-31 16:05:23 +03:00
|
|
|
\item{return}{String specifying what to return. This must be one of the
|
|
|
|
following strings:
|
2021-02-03 20:56:41 +03:00
|
|
|
\itemize{
|
2021-03-31 16:05:23 +03:00
|
|
|
\item \code{"plot"}
|
|
|
|
\item \code{"table"}
|
|
|
|
}
|
|
|
|
|
|
|
|
See \code{Value} for more information.}
|
2020-10-27 00:21:24 +03:00
|
|
|
|
|
|
|
\item{values}{Character vector to specify whether to return percentages
|
2021-02-03 20:56:41 +03:00
|
|
|
or absolute values in "data" and "plot". Valid values are:
|
|
|
|
\itemize{
|
2021-03-05 17:05:00 +03:00
|
|
|
\item \code{"percent"}: percentage of signals divided by total signals (default)
|
|
|
|
\item \code{"abs"}: absolute count of signals
|
2021-02-03 20:56:41 +03:00
|
|
|
}}
|
2020-10-27 00:21:24 +03:00
|
|
|
|
|
|
|
\item{start_hour}{A character vector specifying starting hours,
|
|
|
|
e.g. "0900"}
|
|
|
|
|
|
|
|
\item{end_hour}{A character vector specifying starting hours,
|
|
|
|
e.g. "1700"}
|
|
|
|
}
|
2021-03-31 16:05:23 +03:00
|
|
|
\value{
|
|
|
|
A different output is returned depending on the value passed to the \code{return}
|
|
|
|
argument:
|
|
|
|
\itemize{
|
|
|
|
\item \code{"plot"}: ggplot object. An overlapping area plot (default).
|
|
|
|
\item \code{"table"}: data frame. A summary table.
|
|
|
|
}
|
|
|
|
}
|
2020-10-27 00:21:24 +03:00
|
|
|
\description{
|
|
|
|
Uses the Hourly Collaboration query to produce an area plot of
|
|
|
|
Emails sent and IMs sent attended by hour of the day.
|
|
|
|
}
|
|
|
|
\examples{
|
2021-02-06 16:49:14 +03:00
|
|
|
# Return visualization of percentage distribution
|
2020-10-27 00:21:24 +03:00
|
|
|
workpatterns_area(em_data, return = "plot", values = "percent")
|
|
|
|
|
2021-02-06 16:49:14 +03:00
|
|
|
# Return visualization of absolute values
|
2020-10-27 00:21:24 +03:00
|
|
|
workpatterns_area(em_data, return = "plot", values = "abs")
|
|
|
|
|
2021-02-06 17:15:19 +03:00
|
|
|
# Return summary table
|
2020-10-27 00:21:24 +03:00
|
|
|
workpatterns_area(em_data, return = "table")
|
|
|
|
|
|
|
|
}
|
|
|
|
\seealso{
|
2021-03-05 17:05:00 +03:00
|
|
|
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_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_stacked}()},
|
2021-06-14 15:54:09 +03:00
|
|
|
\code{\link{create_tracking}()},
|
2021-03-05 17:05:00 +03:00
|
|
|
\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}()},
|
2021-05-05 12:08:10 +03:00
|
|
|
\code{\link{hrvar_trend}()},
|
2021-03-05 17:05:00 +03:00
|
|
|
\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}()},
|
2021-03-10 00:24:29 +03:00
|
|
|
\code{\link{one2one_freq}()},
|
2021-03-05 17:05:00 +03:00
|
|
|
\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_rank}()}
|
|
|
|
|
|
|
|
Other Working Patterns:
|
|
|
|
\code{\link{flex_index}()},
|
|
|
|
\code{\link{identify_shifts_wp}()},
|
|
|
|
\code{\link{identify_shifts}()},
|
|
|
|
\code{\link{plot_flex_index}()},
|
|
|
|
\code{\link{workpatterns_classify_bw}()},
|
|
|
|
\code{\link{workpatterns_classify_pav}()},
|
|
|
|
\code{\link{workpatterns_classify}()},
|
|
|
|
\code{\link{workpatterns_hclust}()},
|
|
|
|
\code{\link{workpatterns_rank}()},
|
|
|
|
\code{\link{workpatterns_report}()}
|
|
|
|
|
2021-03-05 01:19:07 +03:00
|
|
|
Other Working Patterns:
|
2021-01-27 19:16:08 +03:00
|
|
|
\code{\link{flex_index}()},
|
2021-02-15 21:03:41 +03:00
|
|
|
\code{\link{identify_shifts_wp}()},
|
2021-03-05 14:18:35 +03:00
|
|
|
\code{\link{identify_shifts}()},
|
2021-01-27 19:16:08 +03:00
|
|
|
\code{\link{plot_flex_index}()},
|
|
|
|
\code{\link{workpatterns_classify_bw}()},
|
|
|
|
\code{\link{workpatterns_classify_pav}()},
|
|
|
|
\code{\link{workpatterns_classify}()},
|
2021-03-05 17:05:00 +03:00
|
|
|
\code{\link{workpatterns_hclust}()},
|
|
|
|
\code{\link{workpatterns_rank}()},
|
|
|
|
\code{\link{workpatterns_report}()}
|
2020-10-27 00:21:24 +03:00
|
|
|
}
|
2021-03-05 17:05:00 +03:00
|
|
|
\concept{Visualization}
|
2021-03-05 01:19:07 +03:00
|
|
|
\concept{Working Patterns}
|