how many types prompting framework can be broken down to? : Sas-bi
No Answer is Posted For this Question
Be the First to Post Answer
what is the effect of the options statement errors=1? : Sas programming
is QUALCOMM using SAS ?
Dear all, proc means data=dsn noprint completetypes; class trtmntgroup /preloadfmt; output out=tot n=n; format trtmntgroup trtf. ; by vstgrp descending severity; run; This is the code I used for AE table. I got the values without giving the variable ‘trtmntgroup(numeric)’ in var statement. And if I give the var statement for that variable i’m getting the same values.How is that possible? What is the difference between class and var statement? Could any one explain me how does proc means work at the back end. And what is the difference between _freq_ value and N value in proc means. Thanks and regards, Rajesh.
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
What is the purpose of the trailing @? The @@? How would you use them?
What is the difference between input and infile statement?
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
Mention how to limit decimal places for the variable using proc means?
What does a PROC TRANSPOSE do?
Diff between proc sql merge and join?
Why and when do you use proc sql?
Where do you use proc means over proc freq?