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
name several ways to achieve efficiency in your program? : Sas programming
What is the use of divide function?
what is hierarchy flattening? : Sas-di
What are the table names in oracle database...?
How to sort in descending order?
what is the primary data source for the wrs? : Sas-bi
explain the concepts and capabilities of business object? : Sas-bi
How necessary is it to be creative in your work?
what is data access? : Sas-di
What is program data vector (pdv)?
What is Linear Regression?
What are the differences between sum function and using “+” operator?
What does the RUN statement do?
how are numeric and character missing values represented internally? : Sas programming
Compare sas with other data analytics tools.