Solution as provided by Johnathan:
It is very easy to test the intercepts as well. You can do this in two ways:
METHOD 1:
For example, say I have a simple regression, meaning one Y and one X. Furthermore, say I have a categorical (nominal) variable called Group. This will be used to produce separate lines for each Group.
In Fit Model, put the following as the model:
X
Group
X*Group
In the output, look at the Effect Tests node. The test for Group is testing whether the intercepts are the same for the groups. The test for X*Group is testing whether the slopes are the same for the groups.
METHOD 2:
You can fit the same model by using dummy variables (1's and 0's). If the categorical variable has 3 levels, then you need 2 columns of dummy variables. The first column (call it Dummy2) has value of 1 where the grouping variable is equal to level 2, and 0 everywhere else. The second column (call it Dummy3) has value of 1 where the grouping variable is equal to level 3, and 0 everywhere else.
In Fit Model, put the following as the model:
X
Dummy2
Dummy3
X*Dummy2
X*Dummy3
Since we used dummy variables for levels 2 and 3 of the grouping variables, the Dummy2 and Dummy3 tests are testing whether levels 2 and 3 of the grouping variable have different intercepts than level 1. The X*Dummy2 and X*Dummy3 are testing the slopes.
The estimated paramters of this model will be different from the parameters of the first method, but the predicted values will be the same.
The Effect Tests report node is totally different from an LS Means report. The LS Means are not output in the Effect Tests report.
If you want to examine the estimated slopes and intercepts, I would do the following. On the Fit Model dialog, on the red triangle popup menu, uncheck the option Center Polynomials. That way when you fit a model, all the estimates are directly interpretable. Then fit the model and use the Save Columns >> Prediction Formula command. A new column gets created with the model saved as a prediction formula. You can examine and compare the parameters at that point.
You can also just use Fit Y by X and fit y vs x, and include the categorical variable as a By variable. Then fit each of the lines and look at the intercepts.
The dummy variable approach can be used to get at the slopes and intercepts. Again, uncheck Center Ploynomials for direct interpretation.
You can also have JMP predict Y for any value of x. Before running the model, include rows in the data table for those X's, but leave the Y cells blank for those rows. Then when you have JMP save the fitted model, it saves predicted values for those rows.
For the simple example I outlined before, these methods work great