Skip to contents

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

Usage

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

meeting_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
meeting_summary(pq_data, hrvar = "LevelDesignation")


# Return a summary table
meeting_summary(pq_data, hrvar = "LevelDesignation", return = "table")
#> # A tibble: 5 × 3
#>   group     Meeting_hours     n
#>   <chr>             <dbl> <int>
#> 1 Director           71.5     6
#> 2 Junior IC          20.8    10
#> 3 Manager            26.1    11
#> 4 Senior IC          11.3    20
#> 5 Support            12.2    53