Skip to contents

Print a formatted summary of review statistics showing key performance metrics.

Usage

wk_print_review_stats_summary(review_stats, n = 5, reload = FALSE)

Arguments

review_stats

List returned from wk_review_statistics(), or formatted data frame from wk_format_review_statistics()

n

Integer indicating how many top/bottom performers to show (default: 5)

reload

Logical indicating whether to reload subjects data from API (default: FALSE)

Value

Invisibly returns the formatted data frame

Examples

if (FALSE) { # \dontrun{
# Get review statistics
stats <- wk_review_statistics()

# Print summary
wk_print_review_stats_summary(stats)

# Show more top/bottom performers
wk_print_review_stats_summary(stats, n = 10)
} # }