Are the preferred term counts are always equal to Body system counts? If so, Why are they equal if not why they are not equal?
Answer Posted / adwita
yes they are equal..
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of _character_ and _numeric_?
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 do you specify the number of iterations and specific condition within a single do loop?
What is the difference between nodupkey and nodup options?
how many types of prompts are there? : Sas-bi
describe about physical data integration? : Sas-di
What is maximum storage capability of SAS?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
Do you need to rearrange the order of the data for the report?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
What do you know about sas and what we do? : sas-grid-administration
What is the use of divide 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 many ways to overcome a missing values???
What is maximum number of rows and cols can be handled in SAS?