How would you remove a format that has been permanently
associated with a variable?
________________
Answer Posted / lakshmi
1. To remove formats permenantly then use this code in data
step,
data data2;
set data1;
format _all_; /* To remove format */
informat _all_; /* To remove informat */
run;
2. To remove formats permenantly then use this code in proc,
proc sort data=data1;
by subject;
format _all_;
run;
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is the difference between using drop = data set option in data statement and set statement?
what are the considerations when picking a SAS/STAT procedure?
How would you identify a macro variable? : sas-macro
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
What is data _null_?
What is the use of function Proc summary?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
Enlist the functions performed by sas.
Give e an example of..
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
Define run-group processing?
What do the PUT and INPUT functions do?
Give some examples where proc report’s defaults are different than proc print’s defaults?
what is ae onset date n what is RDS
What do you know about symput and symget?