Name
prtfac_acp — prints static factor estimation results
CALLING SEQUENCE
prtfac_pca(res,out)
PARAMETERS
- Input
res = a tlist provided by a fac_acp function
out = the file where the results are printed
(optional; default: %io(2), i.e the screen)
- Output
nothing, just print the results
DESCRIPTION
Prints static factor analysis results.
EXAMPLE
load(GROCERDIR+'/data/BusinessSurvey.dat');
// performs DFA and keep the first factor
res = fac_pca('pp','fp','gpp','gob','fob','in','pnum=6','snum=1');
prtfac_acp(res,%io(2))
//Prints on screen the tlist result coming from a static factor analysis.