1 | Data Type:
Specify the type of output variable you are dealing with.
| ||||||||
2 | Input Type: Specify how input data is formatted. Currently, the only option for this analysis is Raw Data. | ||||||||
3 | Training Set:
Specify the data to be used for training the algorithms.
| ||||||||
4 | Training Size: Specify what % of the data points should be picked for the training set. These are used to build the model and the remaining points are used to test the model. | ||||||||
5 | Min Split: Specify the minimum sum of weights in a node n order to be considered for splitting. If the sum of weights is below this value, the node is not split further. | ||||||||
6 | Min Bucket: This is the minimum sum of weights in a terminal node. Typically, this is equal to min split divided by 3. | ||||||||
7 | Complexity: The complexity parameter is used to determine the splits. Any split that does not decrease the overall lack of fit by a factor of cp is not attempted. | ||||||||
8 | Cross Validation: Specify the number of cross-validations. | ||||||||
9 | Max Depth: This is the maximum depth of the tree. The default value is 0, which means that there is no restriction applied on the tree size. | ||||||||
10 | Use Surrogates: Specify how you want to use the surrogates in the splitting process. You could specify that any missing value for the primary split is not sent further down the tree, or you could use surrogates in order to split if there are missing values and finally if all surrogates are missing you could send the observation in the majority direction. | ||||||||
11 | Max Surrogates: Specify the number of surrogate splits that should be retained in the output. If this is set to zero, then the compute time is reduced. | ||||||||
12 | Surrogate Style: This controls the selection of a best surrogate. If set to the default value, the program uses the total number of correct classifications for a potential surrogate variable, or it uses the percent correct calculated over non-missing values of the surrogate. | ||||||||
13 | Additional Options: This field is optional. You can specify any additional options for the R software program directly by typing it here. | ||||||||
14 | Help Button: Click on the Help Button to view the help documentation for this tool. | ||||||||
15 | Cancel Button: Click on the Cancel Button to discard your changes and exit this menu. | ||||||||
16 | OK Button: Click on the OK Button to save your changes and try to execute the program. Note that you will need to specify the required data in order to complete the analysis and generate outputs. If there are any missing data, then the software will remind you to specify the data and click on Compute Outputs to generate analysis results. |
1 | Search Data: The available data displays all the columns of data that are available for analysis. You can use the search bar to filter this list and to speed up finding the right data to use for analysis. Enter a few characters in the search field and the software will filter and display the filtered data in the Available Data box. |
2 | Available Data: The available data box contains the list of data available for analysis. If your workbook does not have any data in tabular format, this box will display "No Data Found". The information displayed in this box includes the row number, whether the data is Numeric (N) or Text (T), and the name of the column variable. Note that the software displays data from all the tables in the current workbook. Even though data within the same table have unique column names, columns across different tables can have similar names. Hence, it is important that you not only specify the column name but also the table name. |
3 | Add or View Data: Click on this button either to add more data into your workbook for analysis or to view more details about the data listed in the available data box. When you click on this button, it opens up the Data Editor dialog box where you can import more data into your workbook, or you can switch from the list view to a table view to see the individual data values for each column. |
4 | Required Data: The code for the required data specifies what data can be specified for that box. An example code is N: 2-4. If the code starts with an N, then you will need to select only numeric columns. If the code starts with a T, then you can select both numeric and text columns. The numbers to the right of the colon specify the min-max values. For example, if the min-max values are 2-4, then you need to select a minimum of 2 columns of data and a maximum of 4 columns of data in this box. If the minimum value is 0, then no data is required to be specified for this box. |
5 | Select Button: Click on this button to select the data for analysis. Any data you select for the analysis is moved to the right. To select a column, click on the columns in the Available Databox to highlight them and then click on the Select Button. A second method to select the data is to double click on the columns in the list of Available Data. Finally, you can also drag and drop the columns you are interested in by holding down the select columns using your left mouse key and dragging and dropping them in one of the boxes on the right. |
6 | Selected Data: If the right amount of data columns has been specified, the list box header will be displayed in the black color. If sufficient data has not been specified, then the list box header will be displayed in the red color. Note that you can double-click on any of the columns in this box to remove them from the box. |
7 | View Selection: Click on this button to view the data you have specified for this analysis. The data can be viewed either in the tablular format or you can view a graphical summary of the data selected. |
1 | R Program: You can view the R program that will be executed here. This program is usually automatically generated from the options you have specified in the setup earlier. This is the program that will be executed by the R program to generate analysis outputs. If you like, you can edit this program. |
2 | Auto Mode: If the radio button is selected as Auto, then the software will automatically update this code based on any changes you make in the input dialog box. We recommend that you use this option to generate the R program so that all your input settings are used to generate analysis results. |
3 | Manual Mode: If you use the Manual option, then you will be allowed to edit the R program before the program is executed. Make sure that you specify a syntactically correct program; otherwise, the R program may report errors. |
1 | Verify Checks: The objective of this analysis as well as any checks that are performed are listed in this dialog box. For example, the software may check if you have correctly specified the input options and if you have specified the data correctly for analysis. |
2 | Check Status: The results of the analysis checks are listed here. If the checks are passed, then they are shown as a green-colored checkmark. If the verification checks fail, then they are shown as a red-colored cross. If the verification checks result in a warning, they are shown in the orange color exclamation mark and finally, any checks that are required to be performed by the user are shown as blue info icons. |
1 | Notes Section: The notes section provides a summary of the input data and the analysis results section shows the name of the response variable along with the names of the input variables. The final decision tree that was derived is shown in text format below. The output section contains the decision criteria, the number of data points in that segment, the error between the model and actual (deviance), and the predicted mpg for that segment. |
2 | Graph Section:
The graph section shows the decision tree and the split criteria along with the number
of data points in each node. For this analysis, the decision tree is based on 2 variables cyl (less than 5 and greater than or equal to 5) and hp (less than 192.5 and greater than or equal to 192.5). Based on this analysis, there are three terminal nodes. In the first terminal node, there are 7 cars with an average of 13.41 mpg. In the second terminal node, there are 14 cars with an average of 18.25 mpg. In the third terminal node, there are 11 cars with an average of 26.7 mpg. Using this model, the predictions are shown in the prediction column. For example, for the first car, the actual mileage is 21 mpg while the prediction based on the decision tree is 18.26 mpg. If you have any data for which you need to make a prediction, you can specify those in the inputs section without specifying a response value. These rows of data will not be used to build your model, but they will be used to make the predictions. |