Returns the seasonal index when a date, time, or datetime interval and value are specified.
Category: | Date and Time |
specifies a character constant, a variable, or an expression that contains an interval name such as WEEK, MONTH, or QTR. Interval can appear in uppercase or lowercase. The possible values of interval are listed in Intervals Used with Date and Time Functions in SAS Language Reference: Concepts.
The three parts of the interval name are as follows:
specifies the name of the basic interval type. For example, YEAR specifies yearly intervals.
specifies an optional multiplier that sets the interval equal to a multiple of the period of the basic interval type. For example, the interval YEAR2 consists of two-year, or biennial, periods.
See | Incrementing Dates and Times by Using Multipliers and by Shifting Intervals for more information. |
specifies an optional shift index that shifts the interval to start at a specified subperiod starting point. For example, YEAR.3 specifies yearly periods shifted to start on the first of March of each calendar year and to end in February of the following year.
Restrictions | The shift index cannot be greater than the number of subperiods in the whole interval. For example, you could use YEAR2.24, but YEAR2.25 would be an error because there is no 25th month in a two-year interval. |
If the default shift period is the same as the interval type, then only multiperiod intervals can be shifted with the optional shift index. For example, because MONTH type intervals shift by MONTH subperiods by default, monthly intervals cannot be shifted with the shift index. However, bimonthly intervals can be shifted with the shift index, because there are two MONTH intervals in each MONTH2 interval. For example, the interval name MONTH2.2 specifies bimonthly periods starting on the first day of even-numbered months. | |
See | Incrementing Dates and Times by Using Multipliers and by Shifting Intervals for more information. |
specifies a date, time, or datetime value that represents a time period of the given interval.
specifies a number or a cycle.
Example | In the following example, the function INTINDEX('MONTH', date, 3);produces the same result as INTINDEX('MONTH', date, 'QTR');Seasonality in the first example is a number (the number of months), and in the second example seasonality is a cycle (QTR). |
intindex('month', '01DEC2000'd);
returns a value of 12 because there are 12 months
in a yearly cycle and December is the 12th month of the year. In the
following examples, INTINDEX returns the same value because both statements
have values that occur in the first quarter of the year 2000: intindex('qtr', '01JAN2000'd);
and intindex('qtr',
'31MAR2000'd);
. The statement intindex('day', '01DEC2000'd);
returns a value of 6 because daily data is
weekly periodic and December 1, 2000, is a Friday, the sixth day of
the week.
intindex('month',
'01DEC2000'd);
returns a value of
12 because there are 12 months in a yearly interval and December is
the 12th month of the year. The MONTH interval requires a SAS date
value. In the following example, intindex('day',
'01DEC2000'd);
returns a value of
6 because there are seven days in a weekly interval and December 1,
2000, is a Friday, the sixth day of the week. The DAY interval requires
a SAS date value.
intindex('qtr', '01JAN2000:00:00:00'dt);
results in an error because the QTR interval
expects the date to be a SAS date value rather than a datetime value.
The example intindex('dtmonth', '01DEC2000:00:00:00'dt);
returns a value of 12. The DTMONTH interval
requires a datetime value.
index = intindex('day', '04APR2005'd);
, the INTINDEX function returns the day of the
week. In the example cycle_index =
intcindex('day', '04APR2005'd);
,
the INTCINDEX function returns the week of the year.
data weekly; *do year = 2000 to 2010; year = 2004; NewYear = HOLIDAY('NEWYEAR',year); do i = -5 to 5; date = INTNX('week',NewYear,i); output; end; *end; format date date.; format NewYear date.; run; /* The standard leap week is the first week of year. */ /* An alternative method uses a third argument:leap week is week 53. */ title "Using a Third Argument to Control Weekly Seasonality"; data LeapWeekExample; set weekly; StandardIndex = INTINDEX('week',date); IndexWithLeap = INTINDEX('week',date,53); run; proc print; run; /* Using a number and an interval can be equivalent for the third argument. */ title "Using the Third Argument as a Number or Cycle"; data Equiv3rdArg; set sashelp.air(obs=12); defaultSeasonal = INTINDEX('MONTH',date); SeasonalArg12 = INTINDEX('MONTH',date,12); SeasonalArgYear = INTINDEX('MONTH',date,'YEAR'); format date date.; run; proc print; run; /* Use the third argument for non-standard seasonality. */ title "Using the Third Argument for Non-Standard Seasonality"; data NonStandardSeasonal; set sashelp.air(obs=24); /* Standard Index - MONTH is Yearly Seasonal */ StandardIndex = INTINDEX('MONTH',date); SemiYrIndex = INTINDEX('MONTH',date,'SEMIYR'); Index6 = INTINDEX('MONTH',date,6); format date date.; run; proc print; run;