what is the use of catalog?
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 |
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
Name and describe few sas character functions that are used for data cleaning in brief.
Best trainer in hyderabad for sas banking.if any one have details pls provide contact details.
What is the general format of function in sas? : sas-grid-administration
What is PROC in SAS?
libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak
how do you pull data from equifax?tell me the process?
0 Answers Synchrony Financial,
What are types of transport files?
2 Answers PRA Health Sciences, Quintiles,
If you’re not wanting any SAS output from a data step, how would you code the data statement to prevent SAS from producing a set?
what is the formula to measure Baseline
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
Why is a STOP statement needed for the point=option on a SET statement?