-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeasures_of_disease_in_epidemiology_2021_bjk.html
1562 lines (891 loc) · 48.7 KB
/
measures_of_disease_in_epidemiology_2021_bjk.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="" xml:lang="">
<head>
<title>Measures of Disease in Clinical Epidemiology </title>
<meta charset="utf-8" />
<meta name="author" content="Brendan J. Kelly, MD, MS" />
<script src="libs/header-attrs/header-attrs.js"></script>
<link href="libs/tile-view/tile-view.css" rel="stylesheet" />
<script src="libs/tile-view/tile-view.js"></script>
<script src="libs/xaringanExtra-webcam/webcam.js"></script>
<script id="xaringanExtra-webcam-options" type="application/json">{"width":"200","height":"200","margin":"1em"}</script>
<link href="libs/tachyons/tachyons.min.css" rel="stylesheet" />
<link href="libs/animate.css/animate.xaringan.css" rel="stylesheet" />
<script src="libs/clipboard/clipboard.min.js"></script>
<link href="libs/shareon/shareon.min.css" rel="stylesheet" />
<script src="libs/shareon/shareon.min.js"></script>
<link href="libs/xaringanExtra-shareagain/shareagain.css" rel="stylesheet" />
<script src="libs/xaringanExtra-shareagain/shareagain.js"></script>
<script src="libs/htmlwidgets/htmlwidgets.js"></script>
<script src="libs/viz/viz.js"></script>
<link href="libs/DiagrammeR-styles/styles.css" rel="stylesheet" />
<script src="libs/grViz-binding/grViz.js"></script>
<link rel="stylesheet" href="xaringan-themer-inferno-grids-fade.css" type="text/css" />
</head>
<body>
<textarea id="source">
exclude: true
---
class: top left hide-count
background-image: url(img/Pneumocystis_jirovecii_AO_AL_wikipedia_crop.png)
background-size: cover
.move-top20[
.title-text[<span style="font-size:0.8em">Measures of Disease in Clinical Epidemiology</span>]
]
.callout-url-leftcorner[
.title-nametext[
Brendan J. Kelly, MD, MS
Infectious Diseases & Epidemiology
University of Pennsylvania
updated: 08 February 2022
]
]
.footnote-right[
<span style='color:white'>image: Federica Viazzi "Microscopy image of <i>P. jirovecii</i>" [(Wikipedia)](https://en.wikipedia.org/wiki/Pneumocystis_jirovecii#/media/File:Pneumocystis_jirovecii_AO_AL.jpg)</span>
]
---
## Learning Objectives
.pad-left[
- Measures of disease occurrence: use population data to describe health and disease.
- Key concepts -- explain the meaning of:
- prevalence
- incidence (<ins>warning</ins>: multiple types)
- relative risk (RR)
- odds ratio (OR)
- Implementation: prevalence, incidence, RR, and OR from study data (2x2 tables!).
- Back to the beginning:
- how do we measure?
- data types and data distributions
]
---
## Why Do I Care? ...
.pad-left[
- Why use these tools (prevalence, incidence, RR, OR)?
- inform differential diagnoses & counsel patients (<ins>your job</ins>)
- design public health interventions & direct new diagnostics/therapies (society!)
- understand distributions and determinants of diseases (science!)
]
---
## ... What Do I Need to Know for the Test?
.pad-left[
.grey-text[
- Why use these tools (prevalence, incidence, RR, OR)?
- inform differential diagnoses & counsel patients (<ins>your job</ins>)
- design public health interventions & direct new diagnostics/therapies (society!)
- understand distributions and determinants of diseases (science!)
]
- How to use these tools:
- precise definitions
(e.g., RR vs OR, cumulative incidence vs incidence density)
- a bit of arithmetic
]
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-a animated flipInY"><div>Case from 1981</div></div>
</div>
---
layout: false
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-a"><div>Case from 1981</div></div>
<div class="extension-tile gridset-b animated flipInX"><div>Prevalence</div></div>
</div>
---
layout: false
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-a"><div>Case from 1981</div></div>
<div class="extension-tile gridset-b"><div>Prevalence</div></div>
<div class="extension-tile gridset-c animated bounceInDown"><div>Incidence</div></div>
</div>
---
layout: false
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-a"><div>Case from 1981</div></div>
<div class="extension-tile gridset-b"><div>Prevalence</div></div>
<div class="extension-tile gridset-c"><div>Incidence</div></div>
<div class="extension-tile gridset-d animated fadeInRight"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
</div>
---
layout: false
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-a"><div>Case from 1981</div></div>
<div class="extension-tile gridset-b"><div>Prevalence</div></div>
<div class="extension-tile gridset-c"><div>Incidence</div></div>
<div class="extension-tile gridset-d"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
<div class="extension-tile gridset-e animated bounceInUp"><div>Relative Risk<br>&<br>Odds Ratios</div></div>
</div>
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-a"><div>Case from 1981</div></div>
<div class="extension-tile gridset-b"><div>Prevalence</div></div>
<div class="extension-tile gridset-c"><div>Incidence</div></div>
<div class="extension-tile gridset-d"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
<div class="extension-tile gridset-e"><div>Relative Risk<br>&<br>Odds Ratios</div></div>
<div class="extension-tile gridset-f animated slideInLeft"><div>Data Types<br>&<br>Distributions</div></div>
</div>
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-a animated flipInY"><div>Case from 1981</div></div>
<div class="extension-tile gridset-grey"><div>Prevalence</div></div>
<div class="extension-tile gridset-grey"><div>Incidence</div></div>
<div class="extension-tile gridset-grey"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
<div class="extension-tile gridset-grey"><div>Relative Risk<br>&<br>Odds Ratios</div></div>
<div class="extension-tile gridset-grey"><div>Data Types<br>&<br>Distributions</div></div>
</div>
---
## Case from 1981...
.pad-left[
- 36-year-old man presents with a 4-month history of fever, dyspnea, and cough.
]
---
background-image: url(figs/hiv_timeline_mmwr_1981.png)
background-size: contain
???
Image credit: [MMWR](https://www.hiv.gov/hiv-basics/overview/history/hiv-and-aids-timeline)
---
background-image: url(figs/cover_mmwr_1981.jpg)
background-size: 750px
background-position: 50% 50%
## MMWR June 5, 1981
---
## MMWR June 5, 1981
.bg-washed-blue.b--dark-blue.ba.bw2.br3.shadow-5.ph4.mt5.f4[
All the above observations suggest the possibility of a <mark>cellular-immune dysfunction related to a common exposure that predisposes individuals to opportunistic infections such as pneumocystosis and candidiasis</mark>. Although the role of CMV infection in the pathogenesis of pneumocystosis remains unknown, the possibility of _P. carinii_ infection must be carefully considered in a differential diagnosis for previously healthy homosexual males with dyspnea and pneumonia.
.tr[
— Gottlieb MS et al <ins>MMWR</ins> 1981
]]
---
## Stigma and Discrimination
.pad-left[
- vulnerable groups and infection risk
- HIV, COVID-19
- how we name infectious diseases
]
---
## Case from 1981... _Pneumocystis_ pneumonia?
.pad-left[
- 36-year-old man presents with a 4-month history of fever, dyspnea, and cough.
- What do you want to know and why?
- history
- vital signs
- physical exam
- laboratory test values
- radiology
- What is his diagnosis? Does he have _Pneumocystis_ pneumonia (PCP)?
]
---
## Case from 1981... _Pneumocystis_ pneumonia?
.pad-left[
- Differential diagnosis must be grounded in understanding:
- distributions of disease: we'll learn about **prevalence** & **incidence**
- determinants of disease: we'll learn **2x2 tables** to relate exposures and outcomes
- In 1981, _Pneumocystis_ was known to be a low <ins>prevalence</ins> disease.
- New data would show an increasing <ins>incidence</ins>.
<br/>
.center[<mark>(In ID, the differential is always evolving).</mark>]
]
---
## Case from 1981... _Pneumocystis_ pneumonia?
.pad-left[
- Does our patient have _Pneumocystis_ pneumonia (PCP)?
- How is the distribution of _Pneumocystis_ pneumonia changing?
- What are the determinants of _Pneumocystis_ pneumonia?
<br/>
.center[<mark>Note: questions depend on <strong>dichotomous</strong> definition of disease (yes/no <em>Pneumocystis</em>)</mark>]
]
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-grey"><div>Case from 1981</div></div>
<div class="extension-tile gridset-b animated flipInX"><div>Measuring<br>Disease<br>Occurrence</div></div>
<div class="extension-tile gridset-grey"><div>Incidence</div></div>
<div class="extension-tile gridset-grey"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
<div class="extension-tile gridset-grey"><div>Relative Risk<br>&<br>Odds Ratios</div></div>
<div class="extension-tile gridset-grey"><div>Data Types<br>&<br>Distributions</div></div>
</div>
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-grey"><div>Case from 1981</div></div>
<div class="extension-tile gridset-b animated flipInX"><div>Prevalence</div></div>
<div class="extension-tile gridset-grey"><div>Incidence</div></div>
<div class="extension-tile gridset-grey"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
<div class="extension-tile gridset-grey"><div>Relative Risk<br>&<br>Odds Ratios</div></div>
<div class="extension-tile gridset-grey"><div>Data Types<br>&<br>Distributions</div></div>
</div>
---
## Prevalence
.pad-left[
- How common is _Pneumocystis_ pneumonia (PCP)?
- Prevalence:
- number with the disease / number in specified population
- **point prevalence**: at a specific point in time
- **period prevalence**: during a given period (e.g., 12-month prevalence)
- a proportion (unitless, ranges from 0-1)
- numerator includes all people who have the disease, both new and ongoing cases
- represents a <ins>cross-sectional</ins> “snapshot” of the population
]
---
## Prevalence of _Pneumocystis_ pneumonia
.pad-left[
- In 1967, CDC became the sole supplier of pentamidine in the United States and began collecting data on cases of PCP:
- period prevalence published in 1974<sup>*</sup>: 579 cases (194 confirmed) over 3 years
- what’s the denominator?
- what’s the prevalence?
- __Point prevalence__ of _Pneumocystis_ would be vanishingly small given limited duration of disease.
- From 1967-1974, even the __period prevalence__ was very small.
.footnote[[*] Walzer PD et al _Annals Int Med_ 1974]
]
---
## Point Prevalence versus Period Prevalence
.pad-left[
- To understand the difference between point and period prevalence, let's imagine a cohort of people living with HIV/AIDS at risk for _Pneumocystis_:
- 50 high-risk subjects enrolled at the start of a two-year observation period
- cases of PCP each receive 3 weeks of antibiotic treatment (red on plot)
- incomplete follow-up (grey on plot)
- some subjects started on _Pneumocystis_ prophylaxis (blue on plot)
]
---
## Cohort at Risk for _Pneumocystis_
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/print_pcp_study-1.png" width="864" style="display: block; margin: auto;" />
---
## Cohort at Risk for _Pneumocystis_
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/print_pcp_study_label_case-1.png" width="864" style="display: block; margin: auto;" />
---
## Cohort at Risk for _Pneumocystis_
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/print_pcp_study_label_followup-1.png" width="864" style="display: block; margin: auto;" />
---
## Cohort at Risk for _Pneumocystis_
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/print_pcp_study_label_prophylaxis-1.png" width="864" style="display: block; margin: auto;" />
---
## Cohort at Risk: Point Prevalence
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/pcp_point_prev-1.png" width="864" style="display: block; margin: auto;" />
---
## Cohort at Risk: Period Prevalence
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/pcp_period_prev-1.png" width="864" style="display: block; margin: auto;" />
---
## Prevalence
.pad-left[
- Prevalence is **NOT** the same as risk.
- Prevalence numerator includes all people who have the disease, both new and ongoing cases, so represents a cross-sectional “snapshot” of the population.
- Prevalence does **NOT** estimate the risk of developing the disease because <mark>prevalence does **NOT** fully account for time </mark> (are the measured cases old cases or new cases?).
]
---
## Reflection Question
.pad-left[
How can an infection have high prevalence if it occurs infrequently?
- (A) the infection is rapidly fatal
- (B) the infection rapidly resolves
- (C) a few children get the infection every year, but the infection persists for the rest of their lives
- (D) the infection results in lifelong protective immunity
]
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-grey"><div>Case from 1981</div></div>
<div class="extension-tile gridset-grey"><div>Prevalence</div></div>
<div class="extension-tile gridset-c animated flipInY"><div>Measuring<br>Disease<br>Occurrence</div></div>
<div class="extension-tile gridset-grey"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
<div class="extension-tile gridset-grey"><div>Relative Risk<br>&<br>Odds Ratios</div></div>
<div class="extension-tile gridset-grey"><div>Data Types<br>&<br>Distributions</div></div>
</div>
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-grey"><div>Case from 1981</div></div>
<div class="extension-tile gridset-grey"><div>Prevalence</div></div>
<div class="extension-tile gridset-c animated flipInY"><div>Incidence</div></div>
<div class="extension-tile gridset-grey"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
<div class="extension-tile gridset-grey"><div>Relative Risk<br>&<br>Odds Ratios</div></div>
<div class="extension-tile gridset-grey"><div>Data Types<br>&<br>Distributions</div></div>
</div>
---
## Case from 1981... _Pneumocystis_ pneumonia?
.pull-left[
![](figs/nejm_combined.png)
]
.pull-right[
<br/>
- new _Pneumocystis_ cases (NYC<sup>1</sup>): 13 cases over 21 months
- new _Pneumocystis_ cases (LA<sup>2</sup>): 5 cases over 7 months
- concurrent opportunistic infections:
- CMV
- _Candida_
- Kaposi's sarcoma
]
.footnote[[1,2] Masur H et al _NEJM_ 1981; Gottlieb MS et al _NEJM_ 1981]
---
## Incidence
.pad-left[
- Among MSM, _Pneumocystis_ pneumonia (PCP) is occurring more frequently...
- Incidence: occurrence of new cases over a given period of time.
- **cumulative incidence**:
`$$cumulative\ incidence = \frac{{new\ cases}}{persons\ at\ risk\\at\ start\ time\ interval}$$`
- **incidence density**: (more precise)
`$$incidence\ density = \frac{new\ cases}{person\ time\\at\ risk}$$`
]
---
## Cumulative Incidence
.pad-left[
- Cumulative incidence:
- must specify population consisting of at-risk individuals
- must specify a time period of observation
- <ins>numerator</ins> = all new cases during a specified time period
- <ins>denominator</ins> = all individuals at risk in the specified population at the start of the specified time period (does NOT account for deaths due to other causes)
- ranges from 0 to 1 (a.k.a., “incidence proportion”)
- like prevalence, is a proportion and therefore has no units (but only makes sense if you specify the time period of observation, e.g., % per year)
]
---
## Incidence Density
.pad-left[
- Incidence density:
- in a specified population consisting of at risk individuals over a specified period of observation, more precisely quantifies the person-time at risk
- <ins>numerator</ins> = all new cases during a specified time period
- <ins>denominator</ins> = the sum, over all individuals in the population, of time at risk until the event of interest, death, loss to follow-up, the end of the study, or when they are no longer at risk for whatever reason
- not a proportion; range depends on the units of person-time (0 to infinity)
- <mark>accounts for death from other causes!</mark>
]
---
## Incidence: Which Denominator?
.pad-left[
- To understand the difference between cumulative incidence and incidence density, let's return to our imagined study of people living with HIV/AIDS at risk for _Pneumocystis_:
- 50 high-risk subjects enrolled at the start of a two-year observation period
- cases of PCP each receive 3 weeks of antibiotic treatment (red on plot)
- incomplete follow-up (grey on plot)
- some subjects started on _Pneumocystis_ prophylaxis (blue on plot)
]
---
## Cohort at Risk for _Pneumocystis_
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/reprint_pcp_study-1.png" width="864" style="display: block; margin: auto;" />
---
## Cohort at Risk for _Pneumocystis_
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/print_pcp_study_label_case2-1.png" width="864" style="display: block; margin: auto;" />
---
## Cohort at Risk for _Pneumocystis_
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/print_pcp_study_label_followup2-1.png" width="864" style="display: block; margin: auto;" />
---
## Cohort at Risk for _Pneumocystis_
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/print_pcp_study_label_prophylaxis2-1.png" width="864" style="display: block; margin: auto;" />
---
## Cohort at Risk: Cumulative Incidence (at risk at start)
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/pcp_incid_proportion-1.png" width="864" style="display: block; margin: auto;" />
---
## Cohort at Risk: Incidence Density (person-time at risk)
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/pcp_incid_density-1.png" width="864" style="display: block; margin: auto;" />
---
## Incidence: Which Denominator?
.pad-left[
- Cumulative incidence of _Pneumocystis_ versus incidence density:
- if the end of the grey line is death / loss to follow-up, how does incidence density compare to annual cumulative incidence?
- if you don’t count time on prophylaxis or treatment antibiotics as “time at risk”, how does the incidence density compare to the annual cumulative incidence?
]
---
## Notes on Population at Risk
.pad-left[
- In a population, individuals are at risk of disease if they:
- (1) do not have the disease at baseline
- (2) are capable of developing the disease (e.g., have the organ of interest; have not been successfully immunized against the disease; haven’t developed lifelong immunity)
- The difference between cumulative incidence and incidence density is that the latter attempts a more precise quantification of population at risk -- it’s harder to evaluate, but more informative if you can.
]
---
## Notes on Person-Time
.pad-left[
- To improve precision of risk estimate (<ins>incidence density</ins>), we measure:
- population at risk of outcome
- actual time at risk (during which outcome could occur)
- **Person-time**:
- denominator for incidence density
- the product of population at risk and time at risk (e.g., patient-months)
]
---
## Beware the Phrase “Incidence Rate”!
.pad-left[
- “Incidence rate” is used to mean two different things:
- number new cases / number persons at risk @ start (short) time interval (e.g., “annual incidence rate” to mean cumulative incidence over one year)
- number new cases / person-time at risk (i.e., incidence density, the precise rate)
]
---
## Reflection Question
.pad-left[
Your patient with HIV is considering starting prophylactic antibiotics for PCP. You have PCP prevalence, cumulative incidence, and incidence density data available. Which data provide the most precise information on the patient’s risk of PCP off of prophylaxis?
- (A) prevalence
- (B) cumulative incidence
- (C) incidence density
]
---
background-image: url(figs/bathtub_labelled.svg)
background-size: 520px
background-position: 50% 70%
## Can You Tell Prevalence from Incidence?
---
## Can You Tell Prevalence from Incidence?
.pad-left[
- HIV in Rakai, Uganda 1994-2003*:
- intensive “ABC” intervention (Abstinence, Be faithful, Condoms)
- prevalence declined!
- incidence remained constant at 1.5% per year
- what happened?
.footnote[[*] Wawer M et al _CROI_ 2005; Roehr B _BMJ_ 2005]
]
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-grey"><div>Case from 1981</div></div>
<div class="extension-tile gridset-grey"><div>Prevalence</div></div>
<div class="extension-tile gridset-grey"><div>Incidence</div></div>
<div class="extension-tile gridset-d animated flipInX"><div>What<br>determines<br>risk?</div></div>
<div class="extension-tile gridset-grey"><div>Relative Risk<br>&<br>Odds Ratios</div></div>
<div class="extension-tile gridset-grey"><div>Data Types<br>&<br>Distributions</div></div>
</div>
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-grey"><div>Case from 1981</div></div>
<div class="extension-tile gridset-grey"><div>Prevalence</div></div>
<div class="extension-tile gridset-grey"><div>Incidence</div></div>
<div class="extension-tile gridset-d animated flipInX"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
<div class="extension-tile gridset-grey"><div>Relative Risk<br>&<br>Odds Ratios</div></div>
<div class="extension-tile gridset-grey"><div>Data Types<br>&<br>Distributions</div></div>
</div>
---
## Basics of Study Types
.pad-left[
- We want to understand the <mark>relationship between risk factors (exposures) and disease (outcomes)</mark>. For example, between CD4 count and PCP in HIV.
- To calculate incidence need to know how many are in a population:
- randomized trials: pick the population, randomize, control the treatment, and measure the outcome
- cohort studies: pick the population, divide into preselected exposure (treatment or risk factor) groups, and measure the outcome
- But do NOT know this in case control studies: pick the cases and control groups, then measure rates of exposure (do NOT know size of population at risk).
]
---
<div id="htmlwidget-579c5723c32f497538f2" style="width:1080px;height:648px;" class="grViz html-widget"></div>
<script type="application/json" data-for="htmlwidget-579c5723c32f497538f2">{"x":{"diagram":"digraph {\n\ngraph [layout = \"neato\",\n outputorder = \"edgesfirst\",\n bgcolor = \"white\"]\n\nnode [fontname = \"Helvetica\",\n fontsize = \"10\",\n shape = \"circle\",\n fixedsize = \"true\",\n width = \"0.5\",\n style = \"filled\",\n fillcolor = \"aliceblue\",\n color = \"gray70\",\n fontcolor = \"gray50\"]\n\nedge [fontname = \"Helvetica\",\n fontsize = \"8\",\n len = \"1.5\",\n color = \"gray80\",\n arrowsize = \"0.5\"]\n\n \"1\" [label = \"Study\nDesign\", color = \"black\", fontsize = \"6\", fontcolor = \"black\", fillcolor = \"#E5E5E5\", pos = \"-3,0!\"] \n \"2\" [label = \"Cohort\", color = \"black\", fontsize = \"6\", fontcolor = \"black\", fillcolor = \"#E5E5E5\", pos = \"-2,0!\"] \n \"3\" [label = \"Randomized\nControlled\nTrial\", color = \"black\", fontsize = \"5.5\", fontcolor = \"black\", fillcolor = \"#E5E5E5\", pos = \"-2,1!\"] \n \"4\" [label = \"Case-\nControl\", color = \"black\", fontsize = \"6\", fontcolor = \"black\", fillcolor = \"#E5E5E5\", pos = \"-2,-1!\"] \n \"5\" [label = \"Denominator\nKnown\", color = \"black\", fontsize = \"6\", fontcolor = \"black\", fillcolor = \"#00FF00\", pos = \"-1,0.5!\"] \n \"6\" [label = \"Denominator\nNOT Known\", color = \"black\", fontsize = \"6\", fontcolor = \"black\", fillcolor = \"#1E90FF\", pos = \"-1,-0.5!\"] \n \"7\" [label = \"Measure\nOutcome\nIncidence\", color = \"black\", fontsize = \"6\", fontcolor = \"black\", fillcolor = \"#E5E5E5\", pos = \"0,0.5!\"] \n \"8\" [label = \"Measure\nExposure\nOdds\", color = \"black\", fontsize = \"6\", fontcolor = \"black\", fillcolor = \"#E5E5E5\", pos = \"0,-0.5!\"] \n \"9\" [label = \"Relative\nRisk\", color = \"black\", fontsize = \"6\", fontcolor = \"black\", fillcolor = \"#E5E5E5\", pos = \"1,0.5!\"] \n \"10\" [label = \"Odds\nRatio\", color = \"black\", fontsize = \"6\", fontcolor = \"black\", fillcolor = \"#E5E5E5\", pos = \"1,-0.5!\"] \n \"11\" [label = \"AR\nRD\nNNT\", color = \"black\", fontsize = \"6\", fontcolor = \"black\", fillcolor = \"#E5E5E5\", pos = \"2,0.5!\"] \n\"1\"->\"2\" [color = \"black\"] \n\"1\"->\"3\" [color = \"black\"] \n\"1\"->\"4\" [color = \"black\"] \n\"2\"->\"5\" [color = \"black\"] \n\"3\"->\"5\" [color = \"black\"] \n\"4\"->\"6\" [color = \"black\"] \n\"5\"->\"7\" [color = \"black\"] \n\"6\"->\"8\" [color = \"black\"] \n\"7\"->\"9\" [color = \"black\"] \n\"8\"->\"10\" [color = \"black\"] \n\"9\"->\"11\" [color = \"black\"] \n}","config":{"engine":"dot","options":null}},"evals":[],"jsHooks":[]}</script>
---
## 2x2 Table
.pull-left[
- Dichotomous exposures and outcomes.
- Examine relationships between exposures and outcomes.
- <ins>Goal</ins>: inference about larger world.
]
.pull-right[
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/unnamed-chunk-2-1.png" width="360" style="display: block; margin: auto;" />
]
---
## 2x2 Table
.pull-left[
- Dichotomous exposures and outcomes.
- Examine relationships between exposures and outcomes.
- <ins>Goal</ins>: inference about larger world.
]
.pull-right[
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/unnamed-chunk-3-1.png" width="360" style="display: block; margin: auto;" />
]
---
## 2x2 Table
.pull-left[
- Dichotomous exposures and outcomes.
- Examine relationships between exposures and outcomes.
- <ins>Goal</ins>: inference about larger world.
- <mark>Is study RCT/cohort or case-control?</mark>
- Can always calculate a <ins>relative risk (RR)</ins> from 2x2 table but only appropriate for <ins>RCT/cohort</ins>
- Can always calculate an <ins>odds ratio (OR)</ins> from 2x2 table but only appropriate for <ins>case-control study</ins><br/>(can do better with RR if RCT/cohort)
]
.pull-right[
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/unnamed-chunk-4-1.png" width="360" style="display: block; margin: auto;" />
]
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-grey"><div>Case from 1981</div></div>
<div class="extension-tile gridset-grey"><div>Prevalence</div></div>
<div class="extension-tile gridset-grey"><div>Incidence</div></div>
<div class="extension-tile gridset-grey"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
<div class="extension-tile gridset-e animated flipInY"><div>2x2 tables<br>are HARD!</div></div>
<div class="extension-tile gridset-grey"><div>Data Types<br>&<br>Distributions</div></div>
</div>
---
class: full-screen hide-count
<div class="grid-3-2">
<div class="extension-tile gridset-grey"><div>Case from 1981</div></div>
<div class="extension-tile gridset-grey"><div>Prevalence</div></div>
<div class="extension-tile gridset-grey"><div>Incidence</div></div>
<div class="extension-tile gridset-grey"><div>Inference from<br>Exposures &<br>Outcomes</div></div>
<div class="extension-tile gridset-e animated flipInY"><div>Relative Risk<br>&<br>Odds Ratios</div></div>
<div class="extension-tile gridset-grey"><div>Data Types<br>&<br>Distributions</div></div>
</div>
---
## 2x2 Table: Calculate Relative Risk for Cohort/Trial
.pull-left[
- Relative Risk (RR): risk (incidence) exposed / risk (incidence) unexposed:
`$$RR = \frac{\frac{A}{(A + B)}}{\frac{C}{(C + D)}}$$`
- Risk difference (RD): risk (incidence) exposed - risk (incidence) unexposed:
`$$RD = \frac{A}{(A + B)} - \frac{C}{(C + D)}$$`
]
.pull-right[
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/unnamed-chunk-5-1.png" width="360" style="display: block; margin: auto;" />
]
---
## PCP ~ AIDS: Relative Risk (RR)
.pull-left[
- Imagine a cohort study examining incidence (risk) for _Pneumocystis_ among patients with or without an Acquired Immunodeficiency Syndrome (AIDS):
- Relative Risk (RR):
`$$RR = \frac{\frac{10}{(10 + 10)}}{\frac{5}{(5 + 15)}} = \frac{0.5}{0.25} = 2$$`
- Risk difference (RD):
`$$RD = \frac{10}{(10 + 10)} - \frac{5}{(5 + 15)} = 0.25$$`
]
.pull-right[
<img src="measures_of_disease_in_epidemiology_2021_bjk_files/figure-html/unnamed-chunk-6-1.png" width="360" style="display: block; margin: auto;" />
]