What is the difference between proportion and average?
No Answer is Posted For this Question
Be the First to Post Answer
Do you need to know if there are any missing values?
for report generation which one you used proc report or data_null_?
3 Answers Accenture, Quintiles,
what are the best practices to process the large data sets in sas programming? : Sas-administrator
what is the use of proc sql? : Sas programming
what are sas bi dashboard components? : Sas-bi
% let A=3+4 what is result
How to display duplicate observations in data?
Describe a time when you were really stuck on a problem and how you solved it?
How do handle working under pressure?
data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.
What is the difference between %put and symbolgen? : sas-macro
if i having variables named a b c d e f ,how to find total of each variable ????give syntax...??