what is the main difference between rename and label? (don't
say that they both perform the same function).
Answers were Sorted based on User's Feedback
Answer / ganesh
Yes i support with srilath By use label option we can give
discriptive names to the particular charcter upto length of
256 character and it is can given either in datastep or
proc step.
Rename is used for changing the name given inthe existing
dataset and it should not exceed 64 charcters and i can be
given only in the datastep.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / rajaanku11
1. Label is global and rename is local i.e., label statement
can be used either in proc or datastep where as rename
should be used only in datastep.
2.If we rename a variable, old name will be lost but if we
label a variable its short name(old name) exists along with
it's descriptive name.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / upendra
Even after labeling the variable,we must use old name for
further analysis.
Where as after renaming the variable we must use new name.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sss
rename is permanently variable name changes
label is just disply purpose
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / ramesh
RENAME:In variable name only _(Under Score),or any special
character is valid)
LABEL:In descriptive name any special character is valid
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ganesh
Rename takes only 64characters length it can be used either
datastep or proc step and this rename is remains only for
the particular session once u terminate the session rename
options vanishes.
Label takes 256 characters length and its is a global
statment we can specify a brief name and this will remain
for long time untill & unless user delete or cancell the
variable.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / santimoy sahoo
rename use in datastep old variable will lost which variable
renaming, but level use in both data & proc step we can see
proc print data old name if we use proc print data =dataset
level then we can see which we are leveling, not lost old data
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raj
Rename : It is used to rename the existing variable and
permanent. Mainly it is used in merge and set statement if
same column name is available in the datasets being merged
or set.
label : It is only for displaying purpose for better
readability.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / salma begum
Rename:
It is used to change the name of the VARIABLE peremanently.
Renaming should be done in a standardized was (start with _ or letter, should not start with special charaters or numbers).
Label:
It temporarily changes the variable name.
it can be written in data step or proc step.
Labelling can be done in unstandardized way (can contain blanks, start with numbers or letters or _) .
Label will not change the actual name of the variable
| Is This Answer Correct ? | 0 Yes | 0 No |
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
what is sas business intelligence? : Sas-bi
% let A=3+4 what is result
Mention what are the data types does SAS contain?
What is the use of %include statement?
Tell e how how dealt with..
In the SAS Data step what is the difference between the subsetting done by Where and subsetting done by If?
What is the difference between %local and %global? : sas-macro
Can we create datasets by proc step ? (Proc contents, Means)?
Tell e how how dealt with..
What is the use of the %include statement?
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?