Provides an overview analysis of 'Work Week Span'. Returns a bar plot showing average weekly utilization hours by default. Additional options available to return a summary table.

workloads_summary(data, hrvar = "Organization", mingroup = 5, return = "plot")

workloads_sum(data, hrvar = "Organization", mingroup = 5, 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.

return

String specifying what to return. This must be one of the following strings:

  • "plot"

  • "table"

See Value for more information.

Value

A different output is returned depending on the value passed to the return argument:

  • "plot": 'ggplot' object. A bar plot for the metric.

  • "table": data frame. A summary table for the metric.

Examples

# Return a ggplot bar chart
workloads_summary(sq_data, hrvar = "LevelDesignation")


# Return a summary table
workloads_summary(sq_data, hrvar = "LevelDesignation", return = "table")
#> # A tibble: 6 × 3
#>   group     Workweek_span     n
#>   <chr>             <dbl> <int>
#> 1 Director           43.7    68
#> 2 Executive          43.4     6
#> 3 Junior IC          41.8   105
#> 4 Manager            42.9   333
#> 5 Senior IC          42.8   103
#> 6 Support            41.1   419