r-ml-timeseries

r-ml-timeseries is a skill for Claude Code, Codex from LeoLin990405/r-analytics-skill. It costs 27 tokens per session (886 once invoked), scanned A, original, MIT.

An R guide for forecasting values that change over time, using methods such as ARIMA, exponential smoothing, and Prophet.

In plain words
What is it for?
Use it to prepare time-series data, fit forecasting models, predict future periods, compare forecast accuracy, and plot results.
Why use it?
It helps you turn dated observations into forecasts while accounting for trends, repeating seasonal patterns, holidays, and other influencing factors.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to prepare time-series data, fit forecasting models, predict future periods, compare forecast accuracy, and plot results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/leolin990405/r-analytics-skill/r-ml-timeseries
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add LeoLin990405/r-analytics-skill --skill r-ml-timeseries
Clone the repo
git clone --depth 1 https://github.com/LeoLin990405/r-analytics-skill

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for r-ml-timeseries

README.md
[![agentmods](https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/r-ml-timeseries/github.svg)](https://agentmods.dev/skills/leolin990405/r-analytics-skill/r-ml-timeseries)
Your own site
<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/r-ml-timeseries"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/r-ml-timeseries/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for r-ml-timeseries

Your own site · 80×15
<a href="https://agentmods.dev/skills/leolin990405/r-analytics-skill/r-ml-timeseries"><img src="https://agentmods.dev/badge/skills/leolin990405/r-analytics-skill/r-ml-timeseries.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 886 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.00886
Opus 5 $0.00014 $0.00443
Sonnet 5 $0.00005 $0.00177
Haiku 4.5 $0.00003 $0.00089

Measured 9d ago against content hash 3959dcf80d06, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

r-ml-timeseries scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

sub-skills/r-ml/r-ml-timeseries/SKILL.md · 174 lines

How it starts

The opening of the file, as written. The whole thing — 174 lines — stays where its author put it; the contents beside it link to each section on GitHub.

R Time Series Forecasting

Time series analysis and forecasting.

prophet (Facebook)

library(prophet)

# Prepare data (must have 'ds' and 'y' columns)
df <- data.frame(
  ds = dates,
  y = values
)

# Fit model
model <- prophet(df)

# Future dates
future <- make_future_dataframe(model, periods = 365)

# Forecast
forecast <- predict(model, future)

# Plot
plot(model, forecast)
prophet_plot_components(model, forecast)

# With seasonality
model <- prophet(
  df,
  yearly.seasonality = TRUE,
  weekly.seasonality = TRUE,
  daily.seasonality = FALSE
)

# Add holidays
holidays <- data.frame(
  holiday = "event",
  ds = as.Date(c("2024-01-01", "2024-12-25")),
  lower_window = 0,
  upper_window = 1
)
model <- prophet(df, holidays = holidays)

# Add regressors
model <- prophet() %>%
  add_regressor("temperature") %>%
  fit.prophet(df)

forecast

library(forecast)

# Create time series
ts_data <- ts(values, frequency = 12, start = c(2020, 1))

# Auto ARIMA
model <- auto.arima(ts_data)
forecast_result <- forecast(model, h = 12)
plot(forecast_result)

# ETS (Exponential Smoothing)
model <- ets(ts_data)
forecast_result <- forecast(model, h = 12)

# TBATS (complex seasonality)
model <- tbats(ts_data)
forecast_result <- forecast(model, h = 12)

# STL decomposition
decomp <- stl(ts_data, s.window = "periodic")
plot(decomp)

# Accuracy
accuracy(forecast_result)

fable (Tidy Forecasting)

library(fable)
library(tsibble)

# Create tsibble
ts_data <- df %>%
  as_tsibble(index = date, key = id)

# Fit multiple models
models <- ts_data %>%
  model(
    arima = ARIMA(value),
    ets = ETS(value),
    snaive = SNAIVE(value)
  )

# Forecast
fc <- models %>% forecast(h = 12)

# Plot
fc %>% autoplot(ts_data)

# Accuracy
fc %>% accuracy(ts_data)

# Cross-validation
cv <- ts_data %>%
  stretch_tsibble(.init = 36, .step = 1) %>%
  model(ARIMA(value)) %>%
  forecast(h = 1) %>%
  accuracy(ts_data)

ARIMA Manual

library(forecast)

# Check stationarity
adf.test(ts_data)

# ACF/PACF
acf(ts_data)
pacf(ts_data)

# Differencing
diff_data <- diff(ts_data)

# Fit ARIMA(p, d, q)
model <- Arima(ts_data, order = c(1, 1, 1))

# Seasonal ARIMA
model <- Arima(ts_data, order = c(1, 1, 1), seasonal = c(1, 1, 1))

# Diagnostics
checkresiduals(model)

Read the full file on GitHub · 174 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 174 lines · 27 tokens per session scan A 3959dcf80d06

Subscribe to this mod's changes

r-ml-timeseries is a skill published in the GitHub repository LeoLin990405/r-analytics-skill (5 stars, last pushed 6mo ago), licensed MIT. It adds 27 tokens to every session and 886 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

bio-applied-molecular-evolution

Test Hardy-Weinberg equilibrium, simulate Wright-Fisher drift/selection, and compute dN/dS, Tajima's D, and Fst with NumPy/SciPy. Use for neutral theory, molecular clock divergence time, selection scans, or effective population size (Ne) questions.

Pavel-Kravchenko/Bioinformatics · 67 tokens

advanced-string-structures

Build tries, Aho-Corasick, and suffix arrays with Kasai LCP to index DNA/text and match many patterns in one pass. Use for genome motif scanning, k-mer indexing, longest-repeat search, or BWA/FM-index groundwork.

Pavel-Kravchenko/Bioinformatics · 55 tokens

ai-science-esm2-embeddings

Generate ESM2 protein embeddings (fair-esm/transformers) and predict structure with ESMFold. Use when embedding sequences, scoring mutations zero-shot, annotating protein function, or doing fast MSA-free structure prediction.

Pavel-Kravchenko/Bioinformatics · 56 tokens

ai-science-geneformer-scgpt

Tokenize scRNA-seq via Geneformer gene-rank or scGPT expression-bin encoding; annotate cell types, simulate in-silico knockouts. Use for foundation-model cell annotation, Geneformer/scGPT tokenization, or perturbation prediction.

Pavel-Kravchenko/Bioinformatics · 60 tokens

ai-science-zero-shot-mutation

Score protein point mutations zero-shot with ESM-1v/ESM-2 masked-LM log-odds, ensembled, benchmarked on ProteinGym DMS. Use when predicting mutation effects, ranking missense variants, scoring VUS fitness with no labels.

Pavel-Kravchenko/Bioinformatics · 63 tokens

bio-applied-advanced-ngs

Assemble genomes de novo: greedy OLC, de Bruijn graph/Eulerian path, N50/L50/NG50 stats, SPAdes/Flye/hifiasm CLI usage. Use when choosing k-mer size, picking an assembler for Illumina/ONT/HiFi reads, or scoring contiguity.

Pavel-Kravchenko/Bioinformatics · 76 tokens