Answer Posted / sirisha
it indicates number of observations.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
Explain bmdp procedure?
describe about metadata object? : Sas-di
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
Give an example where SAS fails to convert character value to numeric value automatically?
What are the special input delimiters used in SAS?
How do you add a number to a macro variable? : sas-macro
how sas deals with business intelligence? : Sas-bi
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.
how does sas handle missing values in procs? : Sas programming
what are some good sas programming practices for processing very large data sets? : Sas programming
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
What is maximum number of rows and cols can be handled in SAS?
What is the use of the %include statement?
why a stop statement is needed for the point= option on a set statement?