Solved – Best way to visualize predictions from a linear model

data visualizationpredictive-modelsregressiontime series

Let's say I'm doing some predictive analytics and am trying to predict US GDP per month using a two or three month lag. After every month, I generate new predictions and am able to compare my prediction to the actual gap. What would be the best way to represent this via plot. Line chart?

In all the research I've done, there doesn't seem to be a 'standard' way to visually represent time series predictions compared to the actual values over time.

Best Answer

Typically line graphs are used to represent trends. Alternatively, if your primary goal is to display the accuracy of your model, and if you have enough data, you could do a histogram of the differences between predicted and actual.

Related Question