Answer Posted / solasa
SAS CATALOG IS A TYPE OF SPECIAL SAS FILE THAT CONTAINS
ELEMENTS.MOST COMMMON ELEMENTS IN SAS CATALOG ARE 'FORMAT'
'SOURCE' OUTPUT,LOG EC.
PROC FORMAT IS USED TO CREATE THE FORMAT AND STORE THEN
IN THE SASCATALOG.
proc format library=SMA;
value $region
'1'='n orthwest'
'2'='southwest'
'3'='central'
;
run;
FORMAT NAME 'REGION' IS STORED IN CATALOG IN 'SMA' LIBRARY
TO KNOW THE CONTENTS OR TO MOVE THE CONTENTS OF ASA CATALOG
USE THE PROCEDURE 'PROC CATALOG'
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
do you prefer proc report or proc tabulate? Why? : Sas programming
Difference between SAS STATA & SPSS?
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
how do you pull data from equifax?tell me the process?
what are _numeric_ and _character_ and what do they do? : Sas programming
what is slowly changing dimension? : Sas-di
For what purposes have you used sas macros? : sas-macro
What are the different servers in sas? : sas-grid-administration
To what type of programms have you used scratch macros?
What are the implications?
what is the use of proc sql? : Sas programming
What do the put and input function do?
Have you used macros? For what purpose you have used? : sas-macro
Describe the ways in which you can create macro variables?
Explain proc sort?