How are the analysis data sets structured?
Answers were Sorted based on User's Feedback
Answer / solasa
Analytical data sets are created from rawdatasets
through a set of instructions in the form of excel sheet
(specification document)
where contains all the information regarding Variable
name, size ,and derived variable(formulas).
The finaldata sets which are used for table creation are
considered to be structured.{Correct if my ans is wrong}
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / srikanth
According to CDISC ADaM the analysis datasets has 2 stuctures.
1. ADSL(subject level dataset)- one record per subject
2. BDS (Basic Data Sturucture) - One rec per subject per parameter per timepoint
eg; ADVS, ADLB,
| Is This Answer Correct ? | 1 Yes | 0 No |
I have a dataset concat having variable a b & c. How to rename a b to e & f?
Explain bmdp procedure?
Explain data_null_?
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro
what is intially documentation for a sas programmer?
what other sas products have you used and consider yourself proficient in using? : Sas programming
What is the significance of the ‘OF’ in X=SUM (OF a1-a4, a6, a9);?
Are you familiar with special input delimiters How are they used?
How to create an external dataset with sas code?
how to extract data from SAP servers? Is like oracle servers or any other methods to extract please reply me.
What is the SAS data set?
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.