powered by
Improved forecasting with ARIMA, seasonal patterns, and workload ceilings.
anki_forecast_enhanced( path = NULL, profile = NULL, metric = "reviews", days_ahead = 30, method = "auto", confidence = 0.95, workload_ceiling = NULL )
A tibble with forecast results
Path to collection.anki2 (auto-detected if NULL)
Profile name (first profile if NULL)
Metric to forecast: "reviews", "time", "retention", "cards_learned"
Number of days to forecast (default 30)
Forecasting method: "auto", "arima", "ets", "holt", "seasonal"
Confidence level for prediction intervals (default 0.95)
Maximum daily workload (NULL for none)
if (FALSE) { fc <- anki_forecast_enhanced("reviews", days_ahead = 30) plot(fc$date, fc$forecast, type = "l") }
Run the code above in your browser using DataLab