Name

pltuniv — plots univariate results

CALLING SEQUENCE

pltuniv(res,options)

PARAMETERS

Input

• res = the results typed list of function dfbeta

• options = 'res', 'fitted', or 'all' according to the results that the user wants to graph (default: all)

Output

• nothing (printed on a graphic window)

DESCRIPTION

Plots the results of least-squares regression.

EXAMPLE

load(GROCERDIR+'data/bdhenderic.dat');
bounds('1964q3','1989q2');
rhe=ols('delts(lm1-lp)','delts(lp)','delts(lagts(1,lm1-lp-ly))','rnet', 'lagts(1,lm1-lp-ly)', 'const','noprint');

pltuniv(rhe)
pltuniv(rhe,'all')
// now only the graph of residuals
 
These 2 examples do the same thing: graph residuals on a graph and observed and fitted values on another graph. 

               

AUTHOR

Eric Dubois 2002