To test if a segmented model with two breakpoints describes the data better than a segmented model with one breakpoint in R, you can use the segmented
package for segmented regression analysis. You can compare the models using the segtest
function in the segmented
package.
Here is an example of how you can do this:
484 chars15 lines
The segtest
function compares the two segmented models and tests if the additional breakpoint in the second model significantly improves the model fit. A significant result suggests that the segmented model with two breakpoints describes the data better than the one with one breakpoint.
gistlibby LogSnag