LIBNAME libref SASEFRED 'physical-name' options;
The LIBNAME statement assigns a SAS library reference (libref) to the physical path of the directory of FRED data files in which the downloaded FRED XML data are stored.
You must specify the following arguments:
specifies the location of the folder where your FRED XML data reside. Enclose the physical name in double quotation marks, and end it with a backslash if the folder is in a Windows environment or a forward slash if it is in a UNIX environment.
specifies the FRED access key that enables you to access the data provided by the FRED website. The FRED access key is a 32-character alphanumeric lowercase string. You can request your fred_apikey by visiting the website at the following URL:
http://api.stlouisfed.org/api_key.html
specifies the list of time series to be included in the output SAS data set. This list is comma delimited and must be enclosed in single quotation marks.
You can also specify the following options.
specifies the aggregation method used for frequency aggregation. You can specify the following values:
aggregates by averaging the frequencies.
aggregates by summing the frequencies.
aggregates by using the end of the period.
By default, AGG='AVG'. This option has no effect if the frequency option (FREQ=) is not specified.
specifies which XMLmap file to use. You can specify the following values:
overwrites the existing XMLmap file and uses the most current XMLmap that is generated by the SASEFRED engine and named in the XMLMAP= option.
uses a preexisting XMLmap file that is named in the XMLMAP= option.
specifies the end date for the time series in the format YYYY-MM-DD. The default is 9999-12-31 (latest available).
specifies the format of the file to be received from the FRED website. Although FRED can report data in many formats, the SASEFRED engine for 9.4 supports the XML format (default).
specifies a lower frequency to aggregate values to. The FRED frequency aggregation feature converts higher-frequency time series to lower-frequency time series (such as converting a daily time series to a monthly time series). In FRED, the highest frequency is daily, and the lowest frequency is annual. There is no default value for no frequency aggregation. The valid frequency arguments are presented in Table 48.2.
Note: An error is returned if you specify a frequency that is higher than the native frequency of the series. For example, if a series has the native frequency 'Annually', it is not possible to aggregate the series to the higher 'Monthly' frequency by using the frequency parameter value 'm'. To find the native frequency of an economic time series, enter the following URL in your web browser. The output includes the 'Frequency' field, which shows native frequency of that time series.
http://api.stlouisfed.org/fred/series?series_id=DJCA&api_key=your_fred_apikey
Note: When a single time series is specified in the IDLIST= option and the FREQ= option is not specified or is an empty string, then the native frequency of that time series is used as the reporting frequency. When multiple time series are specified in the IDLIST= option, then the 'Annual' frequency is used as the reporting frequency unless the reporting frequency is specified in the FREQ= option. If any time series in the IDLIST= option list have a lower native frequency than the requested frequency, then those time series are dropped from the list and excluded from the output.
Table 48.2: FRED Frequency Codes
Frequency Code |
Description |
---|---|
d |
Displays data on a daily basis |
w |
Displays data on a weekly basis |
bw |
Displays data on a biweekly basis |
m |
Displays data on a monthly basis |
q |
Displays data on a quarterly basis |
sa |
Displays data on a semiannual basis |
a |
Displays data on an annual basis |
wef |
Displays data on a weekly (ending Friday) basis |
weth |
Displays data on a weekly (ending Thursday) basis |
wew |
Displays data on a weekly (ending Wednesday) basis |
wetu |
Displays data on a weekly (ending Tuesday) basis |
wem |
Displays data on a weekly (ending Monday) basis |
wesu |
Displays data on a weekly (ending Sunday) basis |
wesa |
Displays data on a weekly (ending Saturday) basis |
bwew |
Displays data on a biweekly (ending Wednesday) basis |
bwem |
Displays data on a biweekly (ending Monday) basis |
specifies the maximum number of rows (time series observations) to return, where fred_limit is an integer between 1 and 100,000. LIMIT= is optional, and the default is LIMIT=100000.
specifies the fileref used for the map assignment. For an example of the SASEFRED engine that uses the MAPREF= and the XMLMAP= options in the FILENAME statement to assign a filename, as in the following, see the section Reading Price Data by Using Indices:
FILENAME MyMap "U:\fred\test\gstart.map";
You can use the MAPREF= and XMLMAP= options to control where the map resides, what you name the map, and how you refer to it with a fileref. You can use the OUTXML= option to name your XML data file. It is placed in the folder designated by ‘physical-name’, and you can reference it by using the myLib libref in your SASEFRED LIBNAME statement. This is shown in the section Getting Started: SASEFRED Interface Engine, inside the DATA step in the SET statement. The SET statement reads observations from the input data set myLib.gstart and stores them in a SAS data set named Company_pvol.
specifies the number of rows (time series observations) to skip before reading the time series observations from the FRED database, where fred_offset is an optional nonnegative integer. If you specify both the OFFSET= and LIMIT= options, the number of rows specified in the OFFSET= option is skipped before the count begins of the number of rows (specified in the LIMIT= option) that are returned. By default, OFFSET=0.
specifies the type of the file to be received from the FRED website. You can specify the following values:
specifies the type Observations by Real-Time Period.
specifies the type Observations by Vintage Date, All Observations.
specifies the type Observations by Vintage Date, New and Revised Observations Only.
specifies the type Observations, Initial Release Only.
If OUTPUT=1 and UNITS='lin', then you must specify a START= date that is later than the series observation start date, Obs_Start
. If OUTPUT=3 or OUTPUT=4, then you must specify UNITS='lin'.
specifies the name of the file where the XML data that are returned from the FRED website are stored. By default, OUTXML=FRED,
which creates a file named FRED1.xml
.
specifies the proxy server to use when a connection-refused error or a connection-timed-out error occurs. For fred_proxyserver, specify the server’s HTTP address followed by a colon and the port number, and enclose that string with double quotation marks. For example, PROXY="http://inetgw.unx.sas.com:8118".
specifies the real-time end date for the time series in the format YYYY-MM-DD. When you use the OUTPUT=4 option, it is important to specify RTSTART=’1776-07-04’ and RTEND=’9999-12-31’to get the available observations for the initial release of the data. Failure to do so can result in no observations being returned for the requested series. The default is today.
specifies the real-time start date for the time series in the format YYYY-MM-DD. When you use the OUTPUT=4 option, it is important to specify RTSTART=’1776-07-04’ and RTEND=’9999-12-31’to get the available observations for the initial release of the data. Failure to do so can result in no observations being returned for the requested series. The default is today.
specifies the order of the time series observations. You can specify the following values:
specifies that the time series observations are in ascending order.
specifies that the time series observations are in descending order.
By default, SORT='ASC'.
specifies the start date for the time series in the format YYYY-MM-DD. The default is 1776-07-04 (earliest available). When
you use the OUTPUT=1 option (observation by real-time period) and the UNITS='chg' option, it is important to specify a date
in the START= option that is later than the series observation start date, Obs_Start
. Failure to do so forces the SASEFRED interface engine to change UNITS='chg' to UNITS='lin'.
specifies the data value transformation. The valid units arguments are ‘lin’, ‘chg’, ‘ch1’, ‘pch’, ‘pc1’, ‘pca’, ‘cch’, ‘cca’,
and ‘log’. the default is UNITS=‘lin’ (for no transformation). The details of the arguments and the corresponding formulas
are presented in Table 48.3. When you specify UNITS='chg' and OUTPUT=1 (observation by real-time period), it is important to specify a date in the START=
option that is later than the series observation start date, Obs_Start
. Failure to do so forces the SASEFRED interface engine to change UNITS='chg' to UNITS='lin'.
Table 48.3: FRED Transformation UNITS Codes
Units Code |
Description |
Formula |
---|---|---|
chg |
Change |
|
ch1 |
Change from one year ago |
|
pch |
Percentage change |
|
pc1 |
Percentage change from one year ago |
|
pca |
Compounded annual rate of change |
|
cch |
Continuously compounded rate of change |
|
cca |
Continuously compounded annual rate of change |
|
log |
Natural log |
|
is the value of series x at time period t. N is the number of observations per year that differs by frequency: daily (N=260), annual (N=1), monthly (N=12), quarterly (N=4), biweekly (N=26), and weekly (N=52). |
queries for useful information (such as categories, tags, groups, and releases) and stores the information in a temporary
utility data set named XFREDTPU
. Specify the following fields within double quotation marks:
specifies the FRED URL that you want to use for the fred_url_link. All the examples in this chapter use the following URL:
http://api.stlouisfed.org/fred/
specifies the type of information that you want to query. You can specify the following query_types and query_options:
series/vintagedates?series_id=series_id
requests the vintage dates for the specified series_id, which you must also specify in the IDLIST= option. For an example of this type of query, see Example 48.7.
release/series?release_id=release
requests a list of the available series for the specified release. For an example of this type of query, see Example 48.8.
source/releases?
source/releases?source_id=source_id
requests a list of the releases available today or available for a specified source_id. For an example of this type of query, see Example 48.14.
You can also narrow this type of query by specifying the source_id; then only the releases that are available for the specified source are stored in the XFREDTPU
data set. For an example of this type of query, see Example 48.11.
tags/series?tags_names=value-list
requests a list of the series that are available and whose tag names match the specified value-list. For an example of this type of query, see Example 48.9.
category/series?category_id=category_id
requests a list of the series that are available and whose category ID matches the specified category_id. For an example of this type of query, see Example 48.12.
sources?
requests a list of the sources available for today’s date. For an example of this type of query, see Example 48.13.
series/categories?series_id=series_ID
requests a list of the categories available for a specified series_ID. For an example of this type of query, see Example 48.10.
limits the number of query results that are returned, where limit must be an integer between 1 and 100,000, inclusive. By default, LIMIT=1000 for releases and release date requests and LIMIT=100,000 for time series requests.
specifies one or more vintage dates in history. The fred_vintage_dates are represented in YYYY-MM-DD format and are used to download the data for a time series as it existed on that specific date in history. The dates in the list are separated by commas (no blanks are allowed). When requesting multiple vintage dates, specify OUTPUT=2 to retrieve all observations or OUTPUT=3 to retrieve only new or revised observations. The default setting is no vintage dates.
Archival Federal Reserve economic data (ALFRED) enable you to retrieve vintage versions of economic data that were available on specific dates in history. To retrieve vintage versions of various time series, enter the following URL in your web browser:
To see a list of available vintage dates for each series, refer to the FRED documentation at the web page with the following URL:
http://api.stlouisfed.org/docs/fred/series_vintagedates.html
specifies the fully qualified name of the location where the XMLmap file is automatically stored. By default, XMLMAP=Fred.map.