Example 31.1 Examining a Weekly Time ID Variable

This example illustrates how problems in a weekly time series can be visualized and quantified using the TIMEID procedure’s diagnostic capabilities.

The following DATA step creates a data set that contains time values spaced in three week intervals where some weeks have been skipped or duplicated and some have been recorded on different weekdays.

data triweek;
   format date date.;
   input date : date. @@;
datalines;
28DEC48 18JAN49 08FEB49 01MAR49 22MAR49 12APR49 03MAY49 24MAY49 
17JUN49 05JUL49 26JUL49 16AUG49 06SEP49 27SEP49 18OCT49 08NOV49 

   ... more lines ...   

The following TIMEID procedure statements generate an ODS display of the time series that characterizes interval counts, offsets, and spans in the time ID variable.

proc timeid data=triweek print=all plot=all;
  id date interval=week3;
run;


The Time ID decomposition listing and plot shown in Output 31.1.1 and Output 31.1.2 summarize how well the WEEK3 interval fits the time ID values by showing the number of counts, offsets, and spans for each time interval that is represented by the DATE variable. The listing in Output 31.1.1 has been truncated to include only the first 10 observations. The Time ID plots in Output 31.1.2 indicate that there are duplicated time ID values for a three-week time interval in the Counts plot. The duplicated time intervals have a Count value of 2. The Offsets plot shows which days in the 21 day cycle have been used to record each time interval in the series. The Spans plot records values of 2 for six time intervals where no observations were recorded in the previous interval. The three component plots are histogram summaries of the diagnostic quantities plotted against individual intervals in the decomposition plots. The component plots can be useful in diagnosing time series that contain many time intervals.

Output 31.1.1 Time ID Decomposition Listing
Time Component
Value
Index
date Offset Span Interval
Count
1 12DEC48 16 . 1
2 02JAN49 16 1 1
3 23JAN49 16 1 1
4 13FEB49 16 1 1
5 06MAR49 16 1 1
6 27MAR49 16 1 1
7 17APR49 16 1 1
8 08MAY49 16 1 1
9 29MAY49 19 1 1
10 19JUN49 16 1 1

Output 31.1.2 Time ID Decomposition Plot
Time ID Decomposition Plot

Output 31.1.3 and Output 31.1.4 describe the distribution of counts of duplicated WEEK3 intervals in the TriWeek data set. For this data set there are 134 intervals that contain one DATE value, and 10 intervals that contain two DATE values.

Output 31.1.3 Time ID Interval Counts Listings
The TIMEID Procedure

Component
Value
Index
Interval
Count
Frequency Percentage
1 1 132 91.666667
2 2 12 8.333333

Statistics Summary
Minimum Maximum Mean Standard
Deviation
1 2 1.0833333 1.3008873

Output 31.1.4 Time ID Interval Counts Histogram
Time ID Interval Counts Histogram

The offsets diagnostics Output 31.1.5 and Output 31.1.6 show the distribution of days in the 21-day WEEK3 interval used to record the time intervals in the series. The observations in the TriWeek data set represent intervals with five different offsets from the beginning of the WEEK3 interval: 0, 16, 18, 19 and 20. The high prevalence of intervals with offset 16 indicates that the TriWeek data set would be represented better using the WEEK3.17 interval.

Output 31.1.5 Time ID Offsets Listings
The TIMEID Procedure

Component
Value
Index
Offset Frequency Percentage
1 0 1 0.694444
2 16 138 95.833333
3 18 1 0.694444
4 19 1 0.694444
5 20 3 2.083333

Statistics Summary
Minimum Maximum Mean Standard
Deviation
0 20 16.006944 1.7006205

Output 31.1.6 Time ID Offsets Histogram
Time ID Offsets Histogram

The span diagnostics Output 31.1.7 and Output 31.1.8 show the distribution of the span sizes between successive DATE values. The TriWeek data set has three different span sizes of widths 0, 1 and 2. Here one span corresponds to the width of a WEEK3 interval.

Output 31.1.7 Time ID Span Listings
The TIMEID Procedure

Component
Value
Index
Span Frequency Percentage
1 0 1 0.704225
2 1 135 95.070423
3 2 6 4.225352

Statistics Summary
Minimum Maximum Mean Standard
Deviation
0 2 1.0352113 0.6367974

Output 31.1.8 Time ID Span Histogram
Time ID Span Histogram

Output 31.1.9 and Output 31.1.10 show the distribution of time ID values before alignment to the WEEK3 interval. The listing in Output 31.1.9 has been truncated to include only the first 10 observations.

Output 31.1.9 Unaligned Time ID Listings
Time ID Values for DATE
Value
Index
date Frequency Percentage
1 28DEC48 1 0.694444
2 18JAN49 1 0.694444
3 08FEB49 1 0.694444
4 01MAR49 1 0.694444
5 22MAR49 1 0.694444
6 12APR49 1 0.694444
7 03MAY49 1 0.694444
8 24MAY49 1 0.694444
9 17JUN49 1 0.694444
10 05JUL49 1 0.694444

Output 31.1.10 Unaligned Time ID Histogram
Unaligned Time ID Histogram