Answer Posted / jyotshna
yes we can replace dataset into view
syntax:
data librefname.datasetname/view=librefnmae.datasetname;
run;
sample:
data aa/view=aa;
set sashel.class;
run;
Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is factor analysis?
Name types of category in which SAS Informats are placed?
What are common programming errors committed in sas
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
What does PROC print, and PROC contents do?
Mention sas system options to debug sas macros.
How would you identify a macro variable?
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?
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.
Give e an example of..
For clinical entire study how many tables will create approx?
Differentiate between sas functions and sas procedures.
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
Did you used proc test? when?
Define run-group processing?