|
沙发

楼主 |
发表于 2012-3-8 02:42:57
|
只看该作者
Re: 急问!sas7bcat文件怎么看
It sounds like a format catalog in SAS.
Right click the file and choose Open with SAS9.*; continue to double-click individual formats to look at the details; alternatively, read first the file into a library and then open it with PROC FORMAT:
[code:3j019137]proc format lib =**URlib;
exclude **anImpossibleNameForfomats;
run;[/code:3j019137]
To look at the 1st level formats, i.e., the description of formats, use PROC CATALOG:
[code:3j019137]proc catalog cat=**theName;
contents;
run; quit;[/code:3j019137]
jingju |
|