Skip to content

Commit a7ce283

Browse files
1 parent 7560b1d commit a7ce283

File tree

2 files changed

+70
-0
lines changed

2 files changed

+70
-0
lines changed
+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
--- trunk/lang/SAS/analysis/UCM072974/src/table7.1.1.1.sas
2+
+++ trunk/lang/SAS/analysis/UCM072974/src/table7.1.1.1.sas
3+
@@ -2,8 +2,51 @@
4+
Initial draft of table specified in "docs" folder, on page 54 of UCM072974:
5+
Table 7.1.1.1
6+
Deaths Listing
7+
-*/
8+
9+
-/*
10+
-No errors so far! :)
11+
+NOTES:
12+
+A footnote should describe the rule for including deaths in the table (e.g., all deaths that occurred during a period of drug exposure or within a period of up to 30 days following discontinuation from drug and also those occurring later but resulting from adverse events that had an onset during drug exposure or during the 30-day follow up period). Other rules may be equally appropriate Deaths occurring outside the time window for this table should be listed elsewhere.
13+
+
14+
+This table should be provided by the sponsor in electronic format. The exact design of the table and the preferred electronic format should be established in discussions between the sponsor and the reviewing division.
15+
+
16+
+Similar lists should be provided for patients exposed to placebo and active control drugs.
17+
+
18+
+This is the data lock date for entering data into this table (i.e., the date beyond which additional exposed patients were not available for entry). Generally this date should be no more than several months prior to the submission date for an NDA. This date as well as this table may likely need to be updated during the course of NDA review as more data become available.
19+
+
20+
+Dose at time of death, or if death occurred after discontinuation, note that, as well as last dose before discontinuation.
21+
+
22+
+Time (days) = days on drug at time of death; or if death occurred after discontinuation, note how many days on drug before discontinuation and also how many days off drug at time of death.
23+
+
24+
+This listing should include all deaths meeting the inclusion rule, whether arising from a clinical trial or from any secondary source (e.g., postmarketing experience). The source should be identified in this column (i.e., 10 for deaths arising from primary source clinical trials and 20 for those arising from secondary sources). [Kim M: not sure where this is coming from ADaM]
25+
+
26+
+Person Time should identify patients (yes/no) for whom person-time data are available, so the reviewer can know which patients were included in the mortality rate calculations. [Kim M: not sure where this variable would come from in ADaM]
27+
+
28+
+Since narrative summaries should be available for all deaths, the description can be very brief (e.g., myocardial infarction, stroke, pancreatic cancer, suicide by drowning).[Kim M: not sure where this is coming from SDTM/ADaM - need just cause or also want to include information from death details dataset]
29+
*/
30+
+
31+
+data dth ;
32+
+ merge dm (where = (dthfl = 'Y'))
33+
+ ex ;
34+
+ by subjid ;
35+
+ if last.exdt;
36+
+ if dthdtc gt rfendtc then dthdy = rfendtc-rfstdtc + 1||'/'|| dthdtc-rfendtc ;
37+
+ else dthdy = dthdtc - rfstdtc + 1;
38+
+run ;
39+
+
40+
+proc report data=dth nofs headline headskip;
41+
+ column studyid / group width=10 'Trial';
42+
+ define siteid/ group width=10 'Center';
43+
+ define subjid / width=10 'Patient' ;
44+
+ define age / width=10 'Age (yrs)';
45+
+ define sex / width=10 'Sex';
46+
+ define exdose / width=10 'Dose (mg)';
47+
+ define dthdy / width=10 'Time (days)';
48+
+ define source / width=10 'Source';
49+
+ define psntime / width=10 'Person Time';
50+
+ define desc / width=10 'Description';
51+
+ title1 'Table 7.1.1.1';
52+
+ title2 'Deaths Listing';
53+
+ title3 'Treatment = New Drug';
54+
+ title4 'Cutoff Date';
55+
+ footnote1 'All deaths that occurred within a period of up to 30 days following discontinuation from drug' ;
56+
+run;
57+
+

Diff for: mkdir4gcode.cmd

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@echo off
2+
rem ---------------------------------------------
3+
rem example:
4+
rem c> mkdir4gcode.cmd lang\SAS\graph\scatterplot
5+
set dir=%1%
6+
mkdir %dir%
7+
mkdir %dir%\baks
8+
mkdir %dir%\data
9+
mkdir %dir%\docs
10+
mkdir %dir%\result
11+
mkdir %dir%\src
12+
mkdir %dir%\valid
13+

0 commit comments

Comments
 (0)