Multiple Regression Results - Residuals/Assumptions/Prediction Tab
Multiple Regression - Computational Approach
Select the Residuals/assumptions/prediction tab of the Multiple Regression Results dialog to access options to perform residual analysis. Additional results are available on the remaining two tabs: Quick and Advanced.
Statistica Visual Basic (SVB). Select this option to generate a Statistica Visual Basic program containing the code implementing the model. This code will be generated in a form compatible with the nodes of Statistica Data Miner; however, you can also simply copy/paste the relevant portion of this code to include it in your custom Visual Basic programs. The code will automatically be displayed in the Statistica Visual Basic program editor window.
C/C++ language. Select this option to generate code compatible with the C/C++ computer language. This option is useful if you want to include the information provided by the final model into custom (C/C++) programs. (See also, Using C/C++/C# Code for Deployment.)
PMML script. This command will generate code in Predictive Model Markup Language (PMML), which is an XML-based language for storing information about fully trained (parameterized) models, and for sharing those models with other applications. Statistica and Statistica Enterprise Server contain facilities to use this information to compute predicted values or classifications, i.e., to quickly and efficiently deploy models (typically in the context of data mining projects).
Deployment to Statistica Enterprise. Select this command to deploy the results as an Analysis Configuration in Statistica Enterprise. Note that appropriately formatted data must be available in a Statistica Enterprise Data Configuration before the results can be deployed to an Analysis Configuration.
Predict values. The options in the Predict values group box are used to make predictions for the dependent variable using the specified model.
Compute confidence limits. Select the Compute confidence limits option button to display the confidence limits (labeled CL) for the predicted value in the Predicting Values spreadsheet.
Note: computing the confidence limits. The 1-Alpha confidence limits for a given value(s) of X is calculated as
Y-hath ± t(1-α/2,n-p)s(Y-hath)
where n = number of cases and p = number of parameters in the model
where
s2 (Y-hath) = MSE(Xh'(X'X)-1Xh )
Compute prediction limits. Select the Compute prediction limits option button to display the prediction limits (labeled PL) for the predicted value in the Predicting Values spreadsheet.
Note: computing the Prediction limits. The 1-Alpha prediction interval for a given value(s) of X is calculated as
Y-hath ± t(1-α/2,n-p)s(Yh(new))
where
s2(Yh(new)) = [ MSE + s2 (Y-hath) = MSE + X' hs2(b)Xh]
= MSE (1 + Xh'(X'X)-1Xh)