Answer Posted / vijay
suresh is write.
_n_ : gives the number of times SAS system looped through a
data step
Sudheer's answer is for _error_ :
_error_ : gives value of 0 or 1 depending on it is error or
not..if it is an error _error_ value will be 1 else 0
| Is This Answer Correct ? | 35 Yes | 10 No |
Post New Answer View All Answers
Mention few capabilities of sas framework.
what is data integration? : Sas-di
Have you ever used the SAS Debugger?
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
why is sas considered self-documenting? : Sas programming
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
Are you involved in writing the inferential analysis plan? Tables specfications?
what is sas database server? : Sas-di
how does sas handle missing values in procs? : Sas programming
explain the concepts and capabilities of business object? : Sas-bi
What are the functions which are used for character handling functions?
Approximately what date is represented by the SAS date value of 730?
What are common programming errors committed in sas
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.
what is broad cast agent? : Sas-bi