Using proc mixed I have created a two segment piecewise regression line with a known break-point. Is there a way to determine if the change in slope across the break-point, (the difference in slope between segment 1 and segment 2) is statistically significant?
We would have to see your model formulation to be more specific. But the idea is to include in your model a common slope for both segments and a difference in slope that applies to segment 2 only. That way, you automatically get the test for the significance of the difference in slopes.
PG
For a specialized tool addressing this problem (non SAS), take a look at Joinpoint from the National Cancer Institute :
Joinpoint Regression Program - Surveillance Research Program
PG
If it can be of some inspiration, run the following simulation :
data have;
do x = 0 to 10 by 0.1;
y = x + 0.7*max(0, x - 5) + rannor(1234);
output;
end;
run;
proc sgplot data=have;
scatter x=x y=y;
series x=x y=x;
run;
%let break_X=5;
data tmp;
set have;
xp = max(0, x - &break_X);
run;
proc reg data=tmp;
model y = x xp;
run;
The xp term in the model tests the difference in slopes.
PG
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.