Different slopes and intercepts for MAKE — you don't say which variable is the Y variable, so I have assumed it is COST, and that SPEED and MAKE are the X variables.
proc glm data=model;
class make;
model cost = make | speed;
run;
quit;
The vertical bar in the MODEL statement gives you all mean effects involving MAKE and SPEED plus the interaction MAKE*SPEED. The coefficients for MAKE are the deviation of the separate intercepts from the overall intercept, and the interaction MAKE*SPEED are the adjustments to the overall slope so that you now have different slopes for the two different MAKE levels.
--
Paige Miller