Answer Posted / hari
This is mainly useful for the fast retrival of data (For ex
we have 559 in 1 lac obs then by index we can get the data
with out reading all the observations
Index are 2 type:
1.simple
2.Composite
ex-for simple
proc datasets lib=college;
modify time;
index create class;
run;
ex-for composite:
proc datasets library=college;
modify time;
index create names(=(name school);
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Mention what are the data types does SAS contain?
What are the data types in sas?
Do you need to know if there are any missing values?
What system options would you use to help debug a macro? : sas-macro
What is by-group processing?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
What is the difference between using drop = data set option in data statement and set statement?
How do you delete duplicate observations in sas?
how are numeric and character missing values represented internally? : Sas programming
What will calendar procedure do?
Explain translate function?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
How we can create SAS USER DEFINED CODE?
Explain input and put function?
Which command is used to save logs in the external file?