1. Home
  2. TDISPLAY directive

TDISPLAY directive

Displays further output after an analysis by TFIT.

Options

PRINT = string tokens What to print (model, summary, estimates, correlations); default mode,summ,esti
CHANNEL = scalar Channel number for output; default * i.e. current output channel
SAVE = identifier Save structure to supply fitted model; default * i.e. that from the last model fitted

No parameters

Description

You can use TDISPLAY to print further output from an TFIT statement. The PRINT option has the same interpretation as in TFIT, except that information is not available to monitor convergence. Also, if the TFIT statement used the setting METHOD=initialize you will not be able to print the standard errors or correlations between the parameter estimates.

The CHANNEL option allows you to send the output to another output channel.

You can use the SAVE option to specify the time-series save structure (from TFIT) from which the output is to be taken. By default TDISPLAY uses the structure from the most recent TFIT statement.

Options: PRINT, CHANNEL, SAVE.

Parameters: none.

See also

Directives: TSM, FTSM, TFILTER, TFIT, TFORECAST, TKEEP, TRANSFERFUNCTION, TSUMMARIZE.

Procedures: BJESTIMATE, BJFORECAST, BJIDENTIFY.

Commands for: Time series.

Example

" Examples 2:7.3.3a, 2:7.3.5 "
" Fix parameters in ARIMA(1,1,2) model for daylength:
  transformation fixed at 1, Constant unconstrained, AR parameter 
  fixed at previous estimate, MA parameters constrained to be equal."
OPEN  '%GENDIR%/Examples/GuidePart2/Daylength.dat'; CHANNEL=3
READ  [PRINT=errors; CHANNEL=3; SETNVALUES=yes] Daylength
CLOSE 3
TSM   Erp; ORDERS=!(1,1,2)
TFIT  [PRINT=*] Daylength; TSM=Erp
TFIT  [FIX=!(0,1,0,2,2)] Daylength; TSM=Erp
TFIT  Daylength; TSM=Erp
TDISPLAY [PRINT=correlations]
Updated on June 18, 2019

Was this article helpful?