What are the rows present in protocol Violation table?
Answers were Sorted based on User's Feedback
Answer / nandu
Different Reasons for the protocol deviations will be
displaying in the protocol devation table.These are study
specfic
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / ybchowdary
In the protocol violation table the following are the rows present in the table.
1.No of patients discontinued
2. protocol violation
3. protocol entry criteria not met
4. adverse events
5. last to followup
6. progressive disease
7. physician decision
8. sponsor decision
9. patient decision
10. death due to study disease
11. death due to study drug related
12. death due to procedural related
13. death due to adverse events (other causes)
| Is This Answer Correct ? | 3 Yes | 0 No |
is there any differnce between proc means and proc summary?
what is the purpose of _error_? : Sas programming
How do you add a number to a macro variable?
What are Dashboard reports?And significance of these in analysis?
What is the length assigned to the target variable by the scan function?
what is the formula to measure Baseline
Can we create datasets by proc step ? (Proc contents, Means)?
is QUALCOMM using SAS ?
Briefly explain input and put function?
What report output formats can you generate using SAS?
explain the concepts and capabilities of business object? : Sas-bi
data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.