I have 2 time series, which one is Actual and another the forecast. i want to plot them on same graph to show their differences with legends ( Actual to be "solid" and Forecast to be "dashed"). As im trying to use ggplo function as script below, only one time series is shown, while 2 legends ( as attached picture)! Thanks for attention.
legs=c("Actual" = "solid", "Forecast" = "dashed")
ggplot() +
geom_line(data = df_COVIX_ts, aes(x = t, y = Actual, color = "Actual")) +
geom_line(data = df_COVIX_prediction_sGARCH, aes(x = t, y = Forecast, color = "Forecast",linetype="dashed")) +
scale_x_date(date_labels = "%Y-%m-%d", limits = c(min(t), max(t))) +
ggtitle("VIX - Actual Vs. Prediction (GARCH)") +
theme(plot.title = element_text(hjust = 0.5, size = 9)) +
labs(x = "", y = "VIX") +
guides(fill = guide_legend(title = "Title")) +
scale_linetype_manual(values = legs) +
scale_color_manual(name = "", values = c("Actual" = "black", "Forecast" ="black"))
ggplot2
works well with long data frames. By firstpivoting
theactual
andforecast
values into a long structure, you can map the variable with these measurement names to alinetype
aesthetic.Data