TEMPLATE Procedure: Managing Template Stores |
PROC TEMPLATE features: |
PATH
statement |
LIST statement:
|
where-expression option |
|
starting-path option |
|
SORT=
option | |
|
This example uses a WHERE expression to select, for listing, fitted
distribution table templates in the Base.Univariate directory.
|
options nodate pageno=1 pagesize=60 linesize=72; |
|
proc template;
path sashelp.tmplmst; |
|
list base.univariate / sort=path descending
where=(lowcase(path) ? 'fit');
run; |
Listing of Fitted Distribution Templates In the Base.Univariate Template Store
1
Listing of: SASHELP.TMPLMST
Path Filter is: Base.Univariate
Sort by: PATH/DESCENDING
Obs Path Type
_____________________________________________
1 Base.Univariate.FitQuant Table
2 Base.Univariate.FitParms Table
3 Base.Univariate.FitGood Table
Copyright © 2008 by SAS Institute Inc., Cary, NC, USA. All rights reserved.