Why double trailing @@ is used in input statement?
No Answer is Posted For this Question
Be the First to Post Answer
proc means? proc sort? proc append? proc freq? proc print? proc content?
what is Difference between PROC SQL JOINS and MERGE?
How do you add a number to a macro variable?
What are SAS/ACCESS and SAS/CONNECT?
name several ways to achieve efficiency in your program? : Sas programming
How to create a permanent sas data set?
What is the maximum length of the macro variable?
1.we can execute a macro with in a macro,by using call symput and symget can any one give me one example? 2.We can create the macro variables by using %let,%do,macro parameters,INTO clause in proc sql and call symput, can any one give me example to create macro variable with INTO clause and call symput? 3.
what is the difference between unique key and primary key? : Sas-di
what is washout period?
Mention what is PROC in 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.