Skip to contents

Retrieves review statistics showing performance summaries for subjects.

Usage

wk_review_statistics(
  ids = NULL,
  subject_ids = NULL,
  subject_types = NULL,
  updated_after = NULL,
  percentages_greater_than = NULL,
  percentages_less_than = NULL,
  all_pages = FALSE
)

Arguments

ids

Vector of review statistic IDs to retrieve.

subject_ids

Vector of subject IDs to filter statistics by.

subject_types

Vector of subject types to filter by.

updated_after

POSIXct datetime to filter statistics updated after this time.

percentages_greater_than

Numeric value to filter by percentage correct greater than this value.

percentages_less_than

Numeric value to filter by percentage correct less than this value.

all_pages

Logical indicating whether to fetch all pages (default: FALSE).

Value

A list containing review statistics data and pagination information.

Examples

if (FALSE) { # \dontrun{
# Get all review statistics
stats <- wk_review_statistics(all_pages = TRUE)

# Get statistics for subjects with low accuracy
low_accuracy <- wk_review_statistics(percentages_less_than = 70)
} # }