what is the primary data source for the wrs? : Sas-bi
No Answer is Posted For this Question
Be the First to Post Answer
how do u test a pros sql(works or not) without executing it?
How are the analysis data sets structured?
how to import HTML files into SAS datasets?
What are the difference between ceil and floor functions in sas?
I Here clinical SAS training by Ramesh Azmeera is good. Is it confirm ?
Mention what are the data types does SAS contain?
what is the Population you used in your project, is it ITT or PP?
0 Answers Accenture, Quintiles,
When you will use nowd option in report???
what are input dataset and output dataset options? : Sas programming
how can u join the two tables without using proc sql Joins and nested queries ?
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here
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.