Learn R Programming

ankiR (version 0.6.0)

anki_workload_projection: Workload Projection (Rough Estimate)

Description

Project future review workload with scenario analysis. This provides rough ballpark estimates for planning purposes, not accurate FSRS simulation.

Usage

anki_workload_projection(
  path = NULL,
  profile = NULL,
  days = 30,
  scenarios = NULL
)

Value

A tibble with workload projections for each scenario

Arguments

path

Path to collection.anki2 (auto-detected if NULL)

profile

Profile name (first profile if NULL)

days

Number of days to project (default 30)

scenarios

List of scenario parameters

Details

This function uses simplified heuristics to estimate workload:

  • New cards reviewed ~4x during learning phase

  • Mature card reviews based on recent average

  • Retention affects review frequency

For accurate FSRS simulation, use Anki's built-in simulator (Tools > FSRS > Simulate) or the FSRS Helper add-on, which implement the full FSRS algorithm.

This function is useful for:

  • Quick "what if" scenario comparisons

  • Rough planning estimates

  • Programmatic analysis in R

Examples

Run this code
if (FALSE) {
proj <- anki_workload_projection(days = 30)
}

Run the code above in your browser using DataLab