Provides an overview analysis of after-hours collaboration time. Returns a bar plot showing average weekly after-hours collaboration hours by default. Additional options available to return a summary table.

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

afterhours_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.

Details

Uses the metric After_hours_collaboration_hours.

See also

Examples

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


# Return a summary table
afterhours_summary(sq_data, hrvar = "LevelDesignation", return = "table")
#> # A tibble: 6 × 3
#>   group     After_hours_collaboration_hours     n
#>   <chr>                               <dbl> <int>
#> 1 Director                             3.07    68
#> 2 Executive                            2.87     6
#> 3 Junior IC                            2.90   105
#> 4 Manager                              3.17   333
#> 5 Senior IC                            2.95   103
#> 6 Support                              2.71   419