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
Explain bmdp procedure?
What is factor analysis?
What system options would you use to help debug a macro? : sas-macro
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
How to limit decimal places for variable using proc means?
what do the pad and dim functions do? : Sas programming
how do you pull data from equifax?tell me the process?
how do you test for missing values? : Sas programming
how does sas handle missing values in functions? : Sas programming
Describe the ways in which you can create macro variables?
Differentiate input and infile.
Describe what are the different levels of administrative users in sas? : sas-grid-administration
describe about metadata object? : Sas-di
Are you sensitive to code walk-throughs peer review or QC review?
What is the use of PROC gplot?