what is the primary variable in your study?
Answers were Sorted based on User's Feedback
Answer / sandeep
Did you mean primary efficacy variable?
Study i am involved in the project is Diabetes
The primary efficacy variable was HbA1c (change from
baseline at end of study)
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sai
Try to answer these questions since you may face any of
these in clinical SAS domain round.
for further info feel free to write me at
sasclinicals2010@gmail.com
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / shuai
did you mean the primary key variable in a sas or sql table?
primary key variable is unique, and it is very helpful when
you need to find some information from other related tables
that also contain the same variable.
for example: claim_id could be a primary key variable in
clinical study
| Is This Answer Correct ? | 0 Yes | 1 No |
which date functions advances a date time or date/time value by a given interval? : Sas programming
what is sas? is a package or tool? give me introduction about sas?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
How do you add a number to a macro variable?
Give some ways by which you can define the variables to produce the summary report (using proc report)?
what is the diff. b/w proc means and proc summary?
explain about sas business intelligence? : Sas-bi
data jagan1.s; input bp$; cards; 100/90 120/89 112/87 run; in the above code how to convert character data values to numeric data values?
what is validvarname and varnum? why we are using this options; explain with a syntax for this options?
what is washout period?
What is the use of stop statement?
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.