How do we determine that a linear regression has given us a good model of the data? We accomplish this by comparing it to a simpler model of the data. One in which only the dependent variable is graphed with a simple scatter plot along with the mean of the dependent variable values. We measure the distance between each value and the mean. We square these values and then add then add them all up which gives us what is called the SST, Sum of Squres Total.
There are also two other values that are of importance. The SSE and the SSR. The SSE is like the SST. We find the SSE by squaring the diffence of each data point in the dataset and the estimated value given by the regression line and then summing these all up. SSE means the Sum of Squared Errors. The SSR, which means the Sum of Squares due to Regression, is how much of the error was taken up by the regression.The SSR is calculated like so, \(SST - SSE = SSR\).