2020-10-27 00:21:24 +03:00
|
|
|
% Generated by roxygen2: do not edit by hand
|
|
|
|
% Please edit documentation in R/external_network_plot.R
|
|
|
|
\name{external_network_plot}
|
|
|
|
\alias{external_network_plot}
|
2020-11-18 02:17:41 +03:00
|
|
|
\title{Plot External Network Breadth and Size as a scatter plot}
|
2020-10-27 00:21:24 +03:00
|
|
|
\usage{
|
|
|
|
external_network_plot(
|
|
|
|
data,
|
|
|
|
hrvar = "Organization",
|
|
|
|
mingroup = 5,
|
|
|
|
return = "plot",
|
2020-11-18 02:17:41 +03:00
|
|
|
bubble_size = c(1, 8)
|
2020-10-27 00:21:24 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
\arguments{
|
2020-11-25 19:46:40 +03:00
|
|
|
\item{data}{A Standard Person Query dataset in the form of a data frame.}
|
2020-10-27 00:21:24 +03:00
|
|
|
|
2021-02-09 02:44:48 +03:00
|
|
|
\item{hrvar}{HR Variable by which to split metrics, defaults to
|
|
|
|
"Organization" but accepts any character vector, e.g. "LevelDesignation"}
|
2020-10-27 00:21:24 +03:00
|
|
|
|
2021-02-09 02:44:48 +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-02-09 02:44:48 +03:00
|
|
|
\item{return}{String specifying what to return. This must be one of the
|
|
|
|
following strings: - \code{"plot"} - \code{"table"}}
|
2020-10-27 00:21:24 +03:00
|
|
|
|
2021-02-09 02:44:48 +03:00
|
|
|
\item{bubble_size}{A numeric vector of length two to specify the size range
|
|
|
|
of the bubbles}
|
2020-10-27 00:21:24 +03:00
|
|
|
}
|
2021-03-31 13:12:39 +03:00
|
|
|
\value{
|
|
|
|
'ggplot' object showing a bubble plot with external network size as the
|
|
|
|
x-axis and external network breadth as the y-axis. The size of the bubbles
|
|
|
|
represent the number of unique employees in each group.
|
|
|
|
}
|
2020-10-27 00:21:24 +03:00
|
|
|
\description{
|
2021-03-05 01:19:07 +03:00
|
|
|
Plot the external network metrics for a HR variable as a scatter plot,
|
|
|
|
showing 'External Network Breadth' as the vertical axis and 'External Network
|
|
|
|
Size' as the horizontal axis.
|
|
|
|
}
|
|
|
|
\details{
|
|
|
|
Uses the metrics \code{External_network_size} and \code{Networking_outside_company}.
|
2020-10-27 00:21:24 +03:00
|
|
|
}
|
|
|
|
\examples{
|
2021-02-06 17:15:19 +03:00
|
|
|
# Return plot
|
2023-08-17 11:49:20 +03:00
|
|
|
external_network_plot(sq_data, return = "plot")
|
2020-10-27 00:21:24 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
\seealso{
|
2021-03-05 01:19:07 +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}()},
|
2021-11-03 14:59:51 +03:00
|
|
|
\code{\link{create_inc}()},
|
2021-03-05 01:19:07 +03:00
|
|
|
\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 01:19:07 +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}()},
|
2022-05-30 17:09:18 +03:00
|
|
|
\code{\link{external_dist}()},
|
2022-06-07 18:32:41 +03:00
|
|
|
\code{\link{external_fizz}()},
|
2022-06-07 20:01:18 +03:00
|
|
|
\code{\link{external_line}()},
|
2022-06-08 17:40:42 +03:00
|
|
|
\code{\link{external_rank}()},
|
2022-05-30 16:51:51 +03:00
|
|
|
\code{\link{external_sum}()},
|
2021-03-05 14:18:35 +03:00
|
|
|
\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_area}()},
|
|
|
|
\code{\link{workpatterns_rank}()}
|
2021-03-05 01:19:07 +03:00
|
|
|
|
|
|
|
Other Network:
|
|
|
|
\code{\link{g2g_data}},
|
2021-03-05 14:18:35 +03:00
|
|
|
\code{\link{internal_network_plot}()},
|
2021-03-05 17:05:00 +03:00
|
|
|
\code{\link{network_describe}()},
|
2021-03-05 01:19:07 +03:00
|
|
|
\code{\link{network_g2g}()},
|
|
|
|
\code{\link{network_p2p}()},
|
2022-05-16 13:38:56 +03:00
|
|
|
\code{\link{network_summary}()},
|
2021-03-05 01:19:07 +03:00
|
|
|
\code{\link{p2p_data_sim}()}
|
2020-10-27 00:21:24 +03:00
|
|
|
}
|
2021-03-05 01:19:07 +03:00
|
|
|
\concept{Network}
|
|
|
|
\concept{Visualization}
|