This example illustrates how a time ID variable can be inferred from a data set when a sufficient number of observations are present.
data workdays; format day weekdate.; input day : date. @@; datalines; 01AUG09 06AUG09 11AUG09 14AUG09 19AUG09 22AUG09 27AUG09 01SEP09 04SEP09 09SEP09 12SEP09 17SEP09 ; proc timeid data=workdays print=interval; id day; run;
The 12 observations in the WorkDays
data set are enough to determine that the DAY time ID variable is represented by the WEEKDAY12W3 interval. The WEEKDAY12W3
interval corresponds to every third day of the week excluding Sundays and Mondays. Characteristics of this interval are shown
in Output 31.2.1.