Shared Concepts and Topics

Syntax: TEST Statement

  • TEST <model-effects> </ options>;

Table 39 summarizes options in the TEST statement.

Table 39: TEST Statement Options

Option Description
CHISQ Requests chi-square tests
DDF= Specifies denominator degrees of freedom for fixed effects
E Requests Type I, Type II, and Type III coefficients
E1 Requests Type I coefficients
E2 Requests Type II coefficients
E3 Requests Type III coefficients
HTYPE= Indicates the type of hypothesis test to perform
INTERCEPT Adds a row that corresponds to the overall intercept


You can specify the following options in the TEST statement after the slash (/):

CHISQ

requests that chi-square tests be performed for the relevant effects in addition to the F tests. Type III tests are the default; you can produce the Type I and Type II tests by using the HTYPE= option. This option has no effect when the procedure produces chi-square statistics by default.

DDF=value-list
DF=value-list

specifies the denominator degrees of freedom for the fixed effects. The value-list specification is a list of numbers or missing values (.) separated by commas. The order of degrees of freedom should match the order of the fixed effects that are specified in the TEST statement; otherwise it should match the order in which the effects appear in the "Type III Tests of Fixed Effects" table. If you want to retain the default degrees of freedom for a particular effect, use a missing value for its location in the list. In the following example, the first TEST statement assigns 3 denominator degrees of freedom to A and 4.7 to A*B, while those for B remain the same, and the second TEST statement assigns 5 denominator degrees of freedom to A and uses the default degrees of freedom for B.

model Y = A B A*B;
test  / ddf=3,.,4.7;
test  B A / ddf=.,5;
E

requests that Type I, Type II, and Type III bold upper L matrix coefficients be displayed for all relevant effects.

E1 | EI

requests that Type I bold upper L matrix coefficients be displayed for all relevant effects.

E2 | EII

requests that Type II bold upper L matrix coefficients be displayed for all relevant effects.

E3 | EIII

requests that Type III bold upper L matrix coefficients be displayed for all relevant effects.

HTYPE=value-list

indicates the type of hypothesis test to perform on the fixed effects. Valid entries for values in the value-list are 1, 2, and 3, which correspond to Type I, Type II, and Type III tests, respectively. The default value is 3.

INTERCEPT
INT

adds a row to the tables for Type I, II, and III tests that correspond to the overall intercept.

Last updated: December 09, 2022