| tsd | R Documentation |
A synthetic univariate time series used throughout the introductory
tspredit examples.
x: regular time index from 0 to 10.
y: smooth sine-based signal used as the forecasting target.
data(tsd)
A data frame with 100 rows and 2 columns:
Numeric time index.
Numeric response series used in forecasting demonstrations.
tsd is the smallest dataset distributed with tspredit and acts as the
didactic entry point for the package. It is intentionally simple so the reader
can focus on the mechanics of sliding windows, train/test splitting,
preprocessing, and prediction workflows before moving to larger benchmark
collections documented in R/tspredbench.R, including EUNITE.Loads,
EUNITE.Reg, EUNITE.Temp, ipeadata.d, ipeadata.m, NN3, NN5,
CATS, SantaFe.A, SantaFe.D, bioenergy, climate, emissions,
fertilizers, gdp, m1, m3, m4, pesticides, and stocks.
Generated for package documentation and examples.
# Load dataset and inspect the first rows
data(tsd)
head(tsd)
# Plot the target series used in the examples
ts.plot(tsd$y, ylab = "Value", xlab = "Index", main = "Synthetic example series")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.