Description Usage Arguments Details Value Examples
Diese Funktion plottet eine gegebene Timeseries (deutsch: Zeitreihe).
1 | plot_timeseries(timeseries, pred = NULL, title = "Zeitreihe mit Vorhersage")
|
timeseries |
Ein numerischer Vektor als Zeitreihe. |
pred |
Optionaler Vektor einer Vorhersage der Zeitreihe |
title |
Optional Character als Titel. |
#'@import ggplot2
Plot der Zeitreihe.
1 2 3 4 | #Erstelle eine Zeitreihe
X = arma_sim(phi = c(0.5, 0.1), theta = c(-0.2), sd = 0.01, I = 100)
f = ts_predict(X, 10)
plot_timeseries(X, f, title = "Vorhersage")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.