2020-10-27 00:21:24 +03:00
|
|
|
% Generated by roxygen2: do not edit by hand
|
|
|
|
% Please edit documentation in R/collaboration_sum.R
|
|
|
|
\name{collaboration_sum}
|
|
|
|
\alias{collaboration_sum}
|
|
|
|
\alias{collab_sum}
|
|
|
|
\alias{collaboration_summary}
|
|
|
|
\alias{collab_summary}
|
|
|
|
\title{Collaboration Summary}
|
|
|
|
\usage{
|
|
|
|
collaboration_sum(data, hrvar = "Organization", mingroup = 5, return = "plot")
|
|
|
|
|
|
|
|
collab_sum(data, hrvar = "Organization", mingroup = 5, return = "plot")
|
|
|
|
|
|
|
|
collaboration_summary(
|
|
|
|
data,
|
|
|
|
hrvar = "Organization",
|
|
|
|
mingroup = 5,
|
|
|
|
return = "plot"
|
|
|
|
)
|
|
|
|
|
|
|
|
collab_summary(data, hrvar = "Organization", mingroup = 5, return = "plot")
|
|
|
|
}
|
|
|
|
\arguments{
|
2020-12-12 16:43:59 +03:00
|
|
|
\item{data}{A Standard Person Query dataset in the form of a data frame.}
|
2020-10-27 00:21:24 +03:00
|
|
|
|
|
|
|
\item{hrvar}{HR Variable by which to split metrics, defaults to "Organization" but accepts any character vector, e.g. "LevelDesignation"}
|
|
|
|
|
|
|
|
\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".}
|
|
|
|
}
|
|
|
|
\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{
|
|
|
|
Provides an overview analysis of 'Weekly Digital Collaboration'.
|
|
|
|
Returns a stacked bar plot of Email and Meeting Hours by default.
|
|
|
|
Additional options available to return a summary table.
|
|
|
|
}
|
|
|
|
\details{
|
|
|
|
Uses the metrics \code{Meeting_hours}, \code{Email_hours}, \code{Unscheduled_Call_hours},
|
|
|
|
and \code{Instant_Message_hours}.
|
|
|
|
}
|
|
|
|
\seealso{
|
2021-03-04 21:33:28 +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_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}()},
|
|
|
|
\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}()},
|
2021-03-05 01:19:07 +03:00
|
|
|
\code{\link{external_network_plot}()},
|
2021-03-04 21:33:28 +03:00
|
|
|
\code{\link{hrvar_count}()}
|
|
|
|
|
2020-10-27 00:21:24 +03:00
|
|
|
Other Collaboration:
|
|
|
|
\code{\link{collaboration_area}()},
|
|
|
|
\code{\link{collaboration_dist}()},
|
|
|
|
\code{\link{collaboration_fizz}()},
|
|
|
|
\code{\link{collaboration_line}()},
|
|
|
|
\code{\link{collaboration_rank}()},
|
2020-11-19 16:59:07 +03:00
|
|
|
\code{\link{collaboration_trend}()}
|
2020-10-27 00:21:24 +03:00
|
|
|
}
|
|
|
|
\concept{Collaboration}
|
2021-03-04 21:33:28 +03:00
|
|
|
\concept{Visualization}
|