Provides an overview analysis of 'External Collaboration'. Returns a stacked bar plot of internal and external collaboration. Additional options available to return a summary table.

external_sum(
  data,
  hrvar = "Organization",
  mingroup = 5,
  stack_colours = c("#1d327e", "#1d7e6a"),
  return = "plot"
)

external_summary(
  data,
  hrvar = "Organization",
  mingroup = 5,
  stack_colours = c("#1d327e", "#1d7e6a"),
  return = "plot"
)

Arguments

data

A Standard Person Query dataset in the form of a data frame.

hrvar

String containing the name of the HR Variable by which to split metrics. Defaults to "Organization". To run the analysis on the total instead of splitting by an HR attribute, supply NULL (without quotes).

mingroup

Numeric value setting the privacy threshold / minimum group size. Defaults to 5.

stack_colours

A character vector to specify the colour codes for the stacked bar charts.

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 return. When 'table' is passed, a summary table is returned as a data frame.

Examples

# Return a plot
external_sum(sq_data, hrvar = "LevelDesignation")


# Return summary table
external_sum(sq_data, hrvar = "LevelDesignation", return = "table")
#> # A tibble: 6 × 5
#>   group     Internal_hours External_hours Total Employee_Count
#>   <chr>              <dbl>          <dbl> <dbl>          <int>
#> 1 Director            15.4           3.55  18.9             68
#> 2 Executive           16.6           2.43  19.0              6
#> 3 Junior IC           15.5           4.14  19.6            105
#> 4 Manager             17.2           4.29  21.5            333
#> 5 Senior IC           15.9           4.24  20.1            103
#> 6 Support             15.3           3.56  18.8            419