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

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

email_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
email_summary(sq_data, hrvar = "LevelDesignation")


# Return a summary table
email_summary(sq_data, hrvar = "LevelDesignation", return = "table")
#> # A tibble: 6 × 3
#>   group     Email_hours     n
#>   <chr>           <dbl> <int>
#> 1 Director         9.70    68
#> 2 Executive        8.36     6
#> 3 Junior IC        9.73   105
#> 4 Manager         10.7    333
#> 5 Senior IC        9.94   103
#> 6 Support          9.37   419