зеркало из https://github.com/microsoft/wpa.git
external rank
This commit is contained in:
Родитель
3ae6753280
Коммит
bb43d5c143
|
@ -76,6 +76,7 @@ export(external_dist)
|
|||
export(external_fizz)
|
||||
export(external_line)
|
||||
export(external_network_plot)
|
||||
export(external_rank)
|
||||
export(external_sum)
|
||||
export(external_summary)
|
||||
export(extract_date_range)
|
||||
|
|
|
@ -0,0 +1,51 @@
|
|||
# --------------------------------------------------------------------------------------------
|
||||
# Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
# Licensed under the MIT License. See LICENSE.txt in the project root for license information.
|
||||
# --------------------------------------------------------------------------------------------
|
||||
|
||||
#' @title Rank groups with high External Collaboration Hours
|
||||
#'
|
||||
#' @description
|
||||
#' This function scans a Standard Person Query for groups with high levels of
|
||||
#' External Collaboration. Returns a plot by default, with an option to
|
||||
#' return a table with all groups (across multiple HR attributes) ranked by
|
||||
#' hours of External Collaboration.
|
||||
#'
|
||||
#' @details
|
||||
#' Uses the metric \code{Collaboration_hours_external}.
|
||||
#' See `create_rank()` for applying the same analysis to a different metric.
|
||||
#'
|
||||
#' @inheritParams create_rank
|
||||
#'
|
||||
#' @import dplyr
|
||||
#' @import ggplot2
|
||||
#' @import reshape2
|
||||
#' @import scales
|
||||
#' @importFrom stats reorder
|
||||
#'
|
||||
#' @family Visualization
|
||||
#' @family After-hours Collaboration
|
||||
#'
|
||||
#' @return
|
||||
#' When 'table' is passed in `return`, a summary table is returned as a data frame.
|
||||
#'
|
||||
#' @export
|
||||
|
||||
external_rank <- function(data,
|
||||
hrvar = extract_hr(data),
|
||||
mingroup = 5,
|
||||
mode = "simple",
|
||||
plot_mode = 1,
|
||||
return = "plot"){
|
||||
|
||||
plot_data <- data %>% mutate(External_collaboration_hours = Collaboration_hours_external)
|
||||
|
||||
|
||||
plot_data %>%
|
||||
create_rank(metric = "External_collaboration_hours",
|
||||
hrvar = hrvar,
|
||||
mingroup = mingroup,
|
||||
mode = mode,
|
||||
plot_mode = plot_mode,
|
||||
return = return)
|
||||
}
|
|
@ -101,6 +101,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
@ -142,7 +143,8 @@ Other After-hours Collaboration:
|
|||
\code{\link{afterhours_line}()},
|
||||
\code{\link{afterhours_rank}()},
|
||||
\code{\link{afterhours_summary}()},
|
||||
\code{\link{afterhours_trend}()}
|
||||
\code{\link{afterhours_trend}()},
|
||||
\code{\link{external_rank}()}
|
||||
}
|
||||
\concept{After-hours Collaboration}
|
||||
\concept{Visualization}
|
||||
|
|
|
@ -87,6 +87,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
@ -128,7 +129,8 @@ Other After-hours Collaboration:
|
|||
\code{\link{afterhours_line}()},
|
||||
\code{\link{afterhours_rank}()},
|
||||
\code{\link{afterhours_summary}()},
|
||||
\code{\link{afterhours_trend}()}
|
||||
\code{\link{afterhours_trend}()},
|
||||
\code{\link{external_rank}()}
|
||||
}
|
||||
\concept{After-hours Collaboration}
|
||||
\concept{Visualization}
|
||||
|
|
|
@ -90,6 +90,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
@ -131,7 +132,8 @@ Other After-hours Collaboration:
|
|||
\code{\link{afterhours_fizz}()},
|
||||
\code{\link{afterhours_rank}()},
|
||||
\code{\link{afterhours_summary}()},
|
||||
\code{\link{afterhours_trend}()}
|
||||
\code{\link{afterhours_trend}()},
|
||||
\code{\link{external_rank}()}
|
||||
}
|
||||
\concept{After-hours Collaboration}
|
||||
\concept{Visualization}
|
||||
|
|
|
@ -98,6 +98,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
@ -139,7 +140,8 @@ Other After-hours Collaboration:
|
|||
\code{\link{afterhours_fizz}()},
|
||||
\code{\link{afterhours_line}()},
|
||||
\code{\link{afterhours_summary}()},
|
||||
\code{\link{afterhours_trend}()}
|
||||
\code{\link{afterhours_trend}()},
|
||||
\code{\link{external_rank}()}
|
||||
}
|
||||
\concept{After-hours Collaboration}
|
||||
\concept{Visualization}
|
||||
|
|
|
@ -91,6 +91,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
@ -132,7 +133,8 @@ Other After-hours Collaboration:
|
|||
\code{\link{afterhours_fizz}()},
|
||||
\code{\link{afterhours_line}()},
|
||||
\code{\link{afterhours_rank}()},
|
||||
\code{\link{afterhours_trend}()}
|
||||
\code{\link{afterhours_trend}()},
|
||||
\code{\link{external_rank}()}
|
||||
}
|
||||
\concept{After-hours Collaboration}
|
||||
\concept{Visualization}
|
||||
|
|
|
@ -80,6 +80,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
@ -121,7 +122,8 @@ Other After-hours Collaboration:
|
|||
\code{\link{afterhours_fizz}()},
|
||||
\code{\link{afterhours_line}()},
|
||||
\code{\link{afterhours_rank}()},
|
||||
\code{\link{afterhours_summary}()}
|
||||
\code{\link{afterhours_summary}()},
|
||||
\code{\link{external_rank}()}
|
||||
}
|
||||
\concept{After-hours Collaboration}
|
||||
\concept{Visualization}
|
||||
|
|
|
@ -97,6 +97,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -109,6 +109,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -93,6 +93,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -94,6 +94,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -131,6 +131,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -86,6 +86,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -80,6 +80,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -154,6 +154,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -132,6 +132,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -108,6 +108,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -104,6 +104,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -139,6 +139,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -98,6 +98,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -129,6 +129,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -113,6 +113,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -106,6 +106,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -117,6 +117,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -145,6 +145,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -80,6 +80,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -96,6 +96,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -142,6 +142,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -82,6 +82,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -105,6 +105,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -98,6 +98,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -85,6 +85,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -85,6 +85,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -120,6 +120,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -88,6 +88,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -72,6 +72,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -102,6 +102,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -37,7 +37,7 @@ a 'fizzy' scatter plot by default.
|
|||
Additional options available to return a table with distribution elements.
|
||||
}
|
||||
\details{
|
||||
Uses the metric \code{External_collaboration_hours}.
|
||||
Uses the metric \code{Collaboration_hours_external}.
|
||||
See \code{create_fizz()} for applying the same analysis to a different metric.
|
||||
}
|
||||
\examples{
|
||||
|
@ -87,6 +87,7 @@ Other Visualization:
|
|||
\code{\link{external_dist}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -89,6 +89,7 @@ Other Visualization:
|
|||
\code{\link{external_dist}()},
|
||||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -85,6 +85,7 @@ Other Visualization:
|
|||
\code{\link{external_dist}()},
|
||||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -0,0 +1,147 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/external_rank.R
|
||||
\name{external_rank}
|
||||
\alias{external_rank}
|
||||
\title{Rank groups with high External Collaboration Hours}
|
||||
\usage{
|
||||
external_rank(
|
||||
data,
|
||||
hrvar = extract_hr(data),
|
||||
mingroup = 5,
|
||||
mode = "simple",
|
||||
plot_mode = 1,
|
||||
return = "plot"
|
||||
)
|
||||
}
|
||||
\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{mingroup}{Numeric value setting the privacy threshold / minimum group
|
||||
size. Defaults to 5.}
|
||||
|
||||
\item{mode}{String to specify calculation mode. Must be either:
|
||||
\itemize{
|
||||
\item \code{"simple"}
|
||||
\item \code{"combine"}
|
||||
}}
|
||||
|
||||
\item{plot_mode}{Numeric vector to determine which plot mode to return. Must
|
||||
be either \code{1} or \code{2}, and is only used when \code{return = "plot"}.
|
||||
\itemize{
|
||||
\item \code{1}: Top and bottom five groups across the data population are highlighted
|
||||
\item \code{2}: Top and bottom groups \emph{per} organizational attribute are highlighted
|
||||
}}
|
||||
|
||||
\item{return}{String specifying what to return. This must be one of the
|
||||
following strings:
|
||||
\itemize{
|
||||
\item \code{"plot"} (default)
|
||||
\item \code{"table"}
|
||||
}
|
||||
|
||||
See \code{Value} for more information.}
|
||||
}
|
||||
\value{
|
||||
When 'table' is passed in \code{return}, a summary table is returned as a data frame.
|
||||
}
|
||||
\description{
|
||||
This function scans a Standard Person Query for groups with high levels of
|
||||
External Collaboration. Returns a plot by default, with an option to
|
||||
return a table with all groups (across multiple HR attributes) ranked by
|
||||
hours of External Collaboration.
|
||||
}
|
||||
\details{
|
||||
Uses the metric \code{Collaboration_hours_external}.
|
||||
See \code{create_rank()} for applying the same analysis to a different metric.
|
||||
}
|
||||
\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_stacked}()},
|
||||
\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_dist}()},
|
||||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_sum}()},
|
||||
\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 After-hours Collaboration:
|
||||
\code{\link{afterhours_dist}()},
|
||||
\code{\link{afterhours_fizz}()},
|
||||
\code{\link{afterhours_line}()},
|
||||
\code{\link{afterhours_rank}()},
|
||||
\code{\link{afterhours_summary}()},
|
||||
\code{\link{afterhours_trend}()}
|
||||
}
|
||||
\concept{After-hours Collaboration}
|
||||
\concept{Visualization}
|
|
@ -94,6 +94,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
\code{\link{hrvar_trend}()},
|
||||
|
|
|
@ -80,6 +80,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
\code{\link{hrvar_trend}()},
|
||||
|
|
|
@ -88,6 +88,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_trend}()},
|
||||
|
|
|
@ -85,6 +85,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -90,6 +90,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -108,6 +108,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -99,6 +99,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -87,6 +87,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -86,6 +86,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -103,6 +103,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -121,6 +121,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -89,6 +89,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -73,6 +73,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -91,6 +91,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -78,6 +78,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -74,6 +74,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -97,6 +97,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -88,6 +88,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -128,6 +128,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -99,6 +99,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -85,6 +85,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -129,6 +129,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -89,6 +89,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -121,6 +121,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -89,6 +89,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -73,6 +73,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -103,6 +103,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -96,6 +96,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -85,6 +85,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -86,6 +86,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -121,6 +121,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -88,6 +88,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -82,6 +82,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -126,6 +126,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
|
@ -111,6 +111,7 @@ Other Visualization:
|
|||
\code{\link{external_fizz}()},
|
||||
\code{\link{external_line}()},
|
||||
\code{\link{external_network_plot}()},
|
||||
\code{\link{external_rank}()},
|
||||
\code{\link{external_sum}()},
|
||||
\code{\link{hr_trend}()},
|
||||
\code{\link{hrvar_count}()},
|
||||
|
|
Загрузка…
Ссылка в новой задаче