-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1023 lines (859 loc) · 33.9 KB
/
index.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="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Jordan Tuia
</title>
<meta name="author" content="Jordan Tuia">
<meta name="description" content="A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design. ">
<meta name="keywords" content="jordan tuia, analyst, shiny app, portfolio-website">
<link rel="stylesheet" href="/portfolio/assets/css/bootstrap.min.css?a4b3f509e79c54a512b890d73235ef04">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/mdb.min.css" integrity="sha256-jpjYvU3G3N6nrrBwXJoVEYI/0zw8htfFnhT9ljN3JJw=" crossorigin="anonymous">
<link defer rel="stylesheet" href="https://unpkg.com/[email protected]/dist/bootstrap-table.min.css">
<link rel="stylesheet" href="/portfolio/assets/css/academicons.min.css?f0b7046b84e425c55f3463ac249818f5">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:100,300,400,500,700|Material+Icons">
<link rel="stylesheet" href="/portfolio/assets/css/jekyll-pygments-themes-github.css?19f3075a2d19613090fe9e16b564e1fe" media="" id="highlight_theme_light">
<link rel="shortcut icon" href="data:image/svg+xml,<svg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20100%20100%22><text%20y=%22.9em%22%20font-size=%2290%22>%F0%9F%98%8A</text></svg>">
<link rel="stylesheet" href="/portfolio/assets/css/main.css?d41d8cd98f00b204e9800998ecf8427e">
<link rel="canonical" href="https://tuiaj.github.io/portfolio/">
<link rel="stylesheet" href="/portfolio/assets/css/jekyll-pygments-themes-native.css?e74e74bf055e5729d44a7d031a5ca6a5" media="none" id="highlight_theme_dark">
<script src="/portfolio/assets/js/theme.js?3dd82e91913a2c1265c0f80e41ff39e2">
</script>
<script src="/portfolio/assets/js/dark_mode.js?6458e63976eae16c0cbe86b97023895a">
</script>
<script defer src="/portfolio/assets/js/counter.js"></script>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RD3VKSF30W"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RD3VKSF30W');
</script>
<body class="fixed-top-nav ">
<header>
<nav id="navbar" class="navbar navbar-light navbar-expand-sm fixed-top">
<div class="container">
<button class="navbar-toggler collapsed ml-auto" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation
</span>
<span class="icon-bar top-bar">
</span>
<span class="icon-bar middle-bar">
</span>
<span class="icon-bar bottom-bar">
</span>
</button>
<div class="collapse navbar-collapse text-right" id="navbarNav">
<ul class="navbar-nav ml-auto flex-nowrap">
<li class="nav-item active">
<a class="nav-link" href="/portfolio/">about
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#projects">projects
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#publications">publications
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#certification">certifications
<span class="sr-only">(current)</span>
</a>
</li>
<!--
<li class="nav-item ">
<a class="nav-link" href="/portfolio/blog/">blog
</a>
</li>
-->
<!--
<li class="nav-item ">
<a class="nav-link" href="/portfolio/publications/">publications
</a>
</li>
-->
<!--
<li class="nav-item ">
<a class="nav-link" href="/portfolio/projects/">projects
</a>
</li>
-->
<!--
<li class="nav-item ">
<a class="nav-link" href="/portfolio/cv/">cv
</a>
</li>
-->
<li class="toggle-container">
<button id="light-toggle" title="Change theme">
<i class="fa-solid fa-moon">
</i>
<i class="fa-solid fa-sun">
</i>
</button>
</li>
</ul>
</div>
</div>
</nav>
<progress id="progress" value="0">
<div class="progress-container">
<span class="progress-bar">
</span>
</div>
</progress>
</header>
<div class="container mt-5">
<div class="post">
<header class="post-header">
<h1 class="post-title">
<span class="font-weight-bold">Jordan
</span> Tuia
</h1>
<p>An analyst specializing in r programming, statistics, and data visualizations.</p> <br>
<!--
<p class="desc">Seattle, WA</p>
-->
</header>
<article>
<!--
<div class="clearfix">
<p>about me paragraph</p>
</div>
-->
<br>
<br>
<!----------------------------------------------------------------------------------------------------------------------------------------->
<!--PROJECTS / WORK SAMPLES ------------------------------------------------------------------------------------------------------------------------------>
<!----------------------------------------------------------------------------------------------------------------------------------------->
<h2 id="projects" onclick="window.location.hash='back'; ">
<!-- <a href="/portfolio/blog/" style="color: inherit;">Projects</a> -->
Projects
</h2>
<div class="news">
<div class="table-responsive" style="max-height: 60vw">
<table class="table table-sm table-borderless">
<tr>
<th scope="row" style="width: 20%">
<abbr class="badge" style="background-color: #4B5F8B;border: 1px solid black;">Analysis</abbr>
</th>
<td>
<p><a href="https://tuiaj.github.io/samp/" target="_blank" style = "font-weight: bold;">Oncology trial endpoints</a><br>
An analysis of endpoints for oncology drug trials, comparing outcomes for single agent vs. combination therapy </p>
</td>
</tr>
<tr>
<th scope="row" style="width: 20%">
<abbr class="badge" style="background-color: #4B5F8B;border: 1px solid black;">Analysis</abbr>
</th>
<td>
<p><a href="https://tuiaj.github.io/CMS/" target="_blank" style = "font-weight: bold;">CMS Data</a><br>
A data processing walkthrough of creating a study dataset from disconnected databases. Includes: SQL, merges/linkage </p>
</td>
</tr>
<th scope="row" style="width: 20%">
<abbr class="badge" style="background-color: #4B5F8B;border: 1px solid black;">Analysis</abbr>
</th>
<td>
<p><a href="https://tuiaj.github.io/MarkovChainMonteCarlo/" target="_blank" style = "font-weight: bold;">Markov Chain Monte Carlo</a><br>
Simulates the Markov Chain Monte Carlo with visuals </p>
</td>
</tr>
<tr>
<th scope="row" style="width: 20%">
<abbr class="badge" style="background-color: #4B5F8B;border: 1px solid black;">Analysis</abbr>
</th>
<td>
<p><a href="https://tuiaj.github.io/KaplanMeier-ByHand/" target="_blank" style = "font-weight: bold;">Survival Analysis</a><br>
Deconstructing the calculations of survival probability in a recreation of typical R functions. Includes: HTML parsing and survival analysis</p>
</td>
</tr>
<tr>
<th scope="row" style="width: 20%">
<abbr class="badge" style="background-color: #48D0CA;border: 1px solid #808080;">Shiny App</abbr>
</th>
<td>
<p><a href=" https://tuiaj.shinyapps.io/breastCancerTumors/" target="_blank" style = "font-weight: bold;">Breast cancer clinical data</a><br>
An interactive shiny app exploring clinical data of breast tumors in relation to malignancy. Includes: binomial logistic regression, principal component analysis, correlation</p>
</td>
</tr>
<tr>
<th scope="row" style="width: 20%">
<abbr class="badge" style="background-color: #48D0CA;border: 1px solid #808080;">Shiny App</abbr>
</th>
<td>
<p><a href="https://tuiaj.shinyapps.io/linkedIn/" target="_blank" style = "font-weight: bold;">LinkedIn job postings</a><br>
An interactive shiny app exploring 2023 LinkedIn job postings. Includes: stratification, regex/natural language proccessing, logic checks </p>
</td>
</tr>
<tr>
<th scope="row" style="width: 20%">
<abbr class="badge" style="background-color: #295EAD;border: 1px solid #808080;">Visual/Design</abbr>
</th>
<td>
<p><a href="/portfolio/assets/proposal_template.pdf" target="_blank" style = "font-weight: bold;">Proposal Template</a><br>
A designed proposal document template. Find the word document <a href="/portfolio/assets/proposal_template.docx">here</a> </p>
</td>
</tr>
<tr>
<th scope="row" style="width: 20%">
<abbr class="badge" style="background-color: #295EAD;border: 1px solid #808080;">Visual/Design</abbr>
</th>
<td>
<p><a href="/portfolio/assets/COVIDtimeline_votes.pdf" target="_blank" style = "font-weight: bold;">Timeline of COVID vaccine votes</a><br>
A data visualization timeline of the votes for the COVID vaccine</p>
</td>
</tr>
<tr>
<th scope="row" style="width: 20%">
<abbr class="badge" style="background-color: #4B5F8B;border: 1px solid black;">Analysis</abbr>
</th>
<td>
<p><a href=" https://tuiaj.github.io/OncologyDrugCosts/" target="_blank" style = "font-weight: bold;">Oncology drug costs</a><br>
An quick analysis of oncology drug approvals, comparing average cost to various developmental factors</p>
</td>
</tr>
<tr>
<th scope="row" style="width: 20%">
<abbr class="badge" style="background-color: #295EAD;border: 1px solid #808080;">Visual/Design</abbr>
</th>
<td>
<p><a href="/portfolio/assets/StopStartDrugs.pdf" target="_blank" style = "font-weight: bold;">Drug sequencing on tumor burden</a><br>
A mockup of visual teaching aids illustrating possible drug effects on tumor burdens. </p>
</td>
</tr>
<tr>
</table>
</div>
</div>
<br><br>
<!----------------------------------------------------------------------------------------------------------------------------------------->
<!--PUBLICATIONS ------------------------------------------------------------------------------------------------------------------------------>
<!----------------------------------------------------------------------------------------------------------------------------------------->
<h2 id = "publications" onclick="window.location.hash='back'; ">
Publications
</h2>
<div class="publications">
<ol class="bibliography">
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="ranganathan2023characteristics" class="col-sm-10">
<div class="title">Characteristics and outcomes of new molecular oncology drug approvals, in combination or monotherapy
</div>
<div class="author"> Sruthi Ranganathan, Alyson Haslam,
<em>Jordan Tuia
</em>, and
<span class="more-authors" title="click to view 1 more author" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '1 more author' ? 'Vinay Prasad' : '1 more author'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">1 more author
</span>
</div>
<div class="periodical">
<em>Journal of Cancer Policy
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="miljkovic2023cancer" class="col-sm-10">
<div class="title">Cancer Drug Price and Novelty in Mechanism of Action
</div>
<div class="author"> Miloš D Miljković,
<em>Jordan Tuia
</em>, Timothée Olivier, and
<span class="more-authors" title="click to view 2 more authors" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '2 more authors' ? 'Alyson Haslam, Vinay Prasad' : '2 more authors'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">2 more authors
</span>
</div>
<div class="periodical">
<em>JAMA Network Open
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="haslam2023umbrella" class="col-sm-10">
<div class="title">Umbrella review of basket trials testing a drug in tumors with actionable genetic biomarkers
</div>
<div class="author"> Alyson Haslam, Timothée Olivier,
<em>Jordan Tuia
</em>, and
<span class="more-authors" title="click to view 1 more author" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '1 more author' ? 'Vinay Prasad' : '1 more author'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">1 more author
</span>
</div>
<div class="periodical">
<em>BMC cancer
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="haslam2023systematic" class="col-sm-10">
<div class="title">Systematic review and meta-analysis of randomized trials testing interventions to reduce physician burnout
</div>
<div class="author"> Alyson Haslam,
<em>Jordan Tuia
</em>, Sarah L Miller, and
<span class="more-authors" title="click to view 1 more author" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '1 more author' ? 'Vinay Prasad' : '1 more author'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">1 more author
</span>
</div>
<div class="periodical">
<em>The American Journal of Medicine
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="hughesassessing" class="col-sm-10">
<div class="title">Assessing patient burden and benefit: A decade of cabozantinib clinical trials
</div>
<div class="author"> Griffin K Hughes, Nicholas B Sajjadi, Brooke Gardner, and
<span class="more-authors" title="click to view 5 more authors" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '5 more authors' ? 'Joshua K Ramoin, Jordan Tuia, Alyson Haslam, Vinay Prasad, Matt Vassar' : '5 more authors'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">5 more authors
</span>
</div>
<div class="periodical">
<em>International journal of cancer
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="walia14multiple" class="col-sm-10">
<div class="title">Multiple Myeloma: Challenges with deciding the optimal sequencing strategy
</div>
<div class="author"> Anushka Walia, Alyson Haslam,
<em>Jordan Tuia
</em>, and
<span class="more-authors" title="click to view 1 more author" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '1 more author' ? 'Vinay Prasad' : '1 more author'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">1 more author
</span>
</div>
<div class="periodical">
<em>Frontiers in Pharmacology
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="walia2023progression" class="col-sm-10">
<div class="title">Progression-free survival, disease-free survival and other composite end points in oncology: improved reporting is needed
</div>
<div class="author"> Anushka Walia,
<em>Jordan Tuia
</em>, and Vinay Prasad
</div>
<div class="periodical">
<em>Nature Reviews Clinical Oncology
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="olivier2023eligibility" class="col-sm-10">
<div class="title">Eligibility for Human Leukocyte Antigen–Based Therapeutics by Race and Ethnicity
</div>
<div class="author"> Timothée Olivier, Alyson Haslam,
<em>Jordan Tuia
</em>, and
<span class="more-authors" title="click to view 1 more author" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '1 more author' ? 'Vinay Prasad' : '1 more author'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">1 more author
</span>
</div>
<div class="periodical">
<em>JAMA Network Open
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="lam2023cost" class="col-sm-10">
<div class="title">Cost of drug wastage from dose modification and discontinuation of oral anticancer drugs
</div>
<div class="author"> Michael Lam, Timothée Olivier, Alyson Haslam, and
<span class="more-authors" title="click to view 2 more authors" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '2 more authors' ? 'Jordan Tuia, Vinay Prasad' : '2 more authors'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">2 more authors
</span>
</div>
<div class="periodical">
<em>JAMA oncology
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="haslam2023scoping" class="col-sm-10">
<div class="title">Scoping Review of Published Oncology Meta-analyses in High-Impact Oncology Journals
</div>
<div class="author"> Alyson Haslam,
<em>Jordan Tuia
</em>, and Vinay Prasad
</div>
<div class="periodical">
<em>JAMA Network Open
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="tuia2023profile" class="col-sm-10">
<div class="title">Profile of the Oncology Physician Workforce and the Characteristics of Attrition
</div>
<div class="author">
<em>Jordan Tuia
</em>, Alyson Haslam, and Vinay Prasad
</div>
<div class="periodical">
<em>JCO Oncology Practice
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="miller2023interpretation" class="col-sm-10">
<div class="title">Interpretation of Wide Confidence Intervals in Meta-Analytic Estimates: Is the ‘Absence of Evidence’‘Evidence of Absence’?
</div>
<div class="author"> Sarah Miller,
<em>Jordan Tuia
</em>, and Vinay Prasad
</div>
<div class="periodical">
<em>Available at SSRN
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="buck2023frequency" class="col-sm-10">
<div class="title">Frequency and characteristics of trials using medical writer support in high-impact oncology journals
</div>
<div class="author"> Eva Buck, Alyson Haslam,
<em>Jordan Tuia
</em>, and
<span class="more-authors" title="click to view 1 more author" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '1 more author' ? 'Vinay Prasad' : '1 more author'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">1 more author
</span>
</div>
<div class="periodical">
<em>JAMA network open
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="haslam2023eventual" class="col-sm-10">
<div class="title">Eventual success rate and predictors of success for oncology drugs tested in phase I trials
</div>
<div class="author"> Alyson Haslam, Timothée Olivier, Kerrington Powell, and
<span class="more-authors" title="click to view 2 more authors" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '2 more authors' ? 'Jordan Tuia, Vinay Prasad' : '2 more authors'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">2 more authors
</span>
</div>
<div class="periodical">
<em>International Journal of Cancer
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="walia2023current" class="col-sm-10">
<div class="title">Current landscape of disparity-focused research: a bibliometric analysis of 260 research articles
</div>
<div class="author"> Anushka Walia, Alyson Haslam,
<em>Jordan Tuia
</em>, and
<span class="more-authors" title="click to view 2 more authors" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '2 more authors' ? 'Milos Milijkovic, Vinay Prasad' : '2 more authors'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">2 more authors
</span>
</div>
<div class="periodical">
<em>medRxiv
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="haslam2023systematid" class="col-sm-10">
<div class="title">A systematic review of basket and umbrella trials in oncology: the importance of tissue of origin and molecular target
</div>
<div class="author"> Alyson Haslam, Timothée Olivier,
<em>Jordan Tuia
</em>, and
<span class="more-authors" title="click to view 1 more author" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '1 more author' ? 'Vinay Prasad' : '1 more author'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">1 more author
</span>
</div>
<div class="periodical">
<em>European Journal of Cancer
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="miljkovic2022association" class="col-sm-10">
<div class="title">Association between US drug price and measures of efficacy for oncology drugs approved by the US Food and Drug Administration from 2015 to 2020
</div>
<div class="author"> Miloš D Miljković, Jordan E Tuia, Timothee Olivier, and
<span class="more-authors" title="click to view 2 more authors" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '2 more authors' ? 'Alyson Haslam, Vinay Prasad' : '2 more authors'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">2 more authors
</span>
</div>
<div class="periodical">
<em>JAMA Internal Medicine
</em>, 2022
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="tuia2022crossover" class="col-sm-10">
<div class="title">Crossover in Adjuvant Trastuzumab Trials: Sparing Toxicity in Patient Care
</div>
<div class="author"> Jordan E Tuia, Timothée Olivier, and Vinay K Prasad
</div>
<div class="periodical">
<em>American journal of clinical oncology
</em>, 2022
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="prasad2022preliminary" class="col-sm-10">
<div class="title">A preliminary study of the rate of hospitals and satellite clinics worldwide for top US cancer centers
</div>
<div class="author"> Vinay Prasad, Alyson Haslam, and
<em>Jordan Tuia
</em>
</div>
<div class="periodical">
<em>Journal of Cancer Policy
</em>, 2022
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="brown2019measuring" class="col-sm-10">
<div class="title">Measuring the effectiveness of public involvement in transportation planning and project development
</div>
<div class="author"> Bruce Brown, Kate Gunby, Jamie Strausz-Clark, and
<span class="more-authors" title="click to view 8 more authors" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '8 more authors' ? 'Anne Frugé, Shaun Glaze, Mackenzie Findlay, Jordan Tuia, Ian Hajnosz, Engineering Sciences, Medicine, others' : '8 more authors'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">8 more authors
</span>
</div>
<div class="periodical">
<em>NCHRP research report
</em>, 2019
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="bartek2017promise" class="col-sm-10">
<div class="title">The promise and pitfalls of using crowdsourcing in research prioritization for back pain: cross-sectional surveys
</div>
<div class="author"> Matthew A Bartek, Anjali R Truitt, Sierra Widmer-Rodriguez, and
<span class="more-authors" title="click to view 8 more authors" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '8 more authors' ? 'Jordan Tuia, Zoya A Bauer, Bryan A Comstock, Todd C Edwards, Sarah O Lawrence, Sarah E Monsell, Donald L Patrick, others' : '8 more authors'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">8 more authors
</span>
</div>
<div class="periodical">
<em>Journal of medical Internet research
</em>, 2017
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
<li>
<div class="row">
<!--
<div class="col-sm-2 abbr"></div>
-->
<div id="khan2023assessing" class="col-sm-10">
<div class="title">Assessing Patient Risk, Benefit, and Outcomes in Drug Development: A Decade of Ramucirumab Clinical Trials
</div>
<div class="author"> Adam Khan, Hassan Khan, Griffin Hughes, and
<span class="more-authors" title="click to view 8 more authors" onclick=" var element=$(this); element.attr('title', ''); var more_authors_text=element.text() == '8 more authors' ? 'Chase Ladd, Ryan McIntire, Brooke Gardner, Andriana Pena, Abigail Schoutko, Kirstien Minley, Alyson Haslam, others' : '8 more authors'; var cursorPosition=0; var textAdder=setInterval(function(){ element.text(more_authors_text.substring(0, cursorPosition + 1)); if (++cursorPosition == more_authors_text.length){ clearInterval(textAdder); } }, '3'); ">8 more authors
</span>
</div>
<div class="periodical">
<em>In 7th Annual Joint Research Meeting
</em>, 2023
</div>
<div class="periodical">
</div>
<div class="links">
</div>
</div>
</div>
</li>
</ol>
</div>
<br>
<br>
<br>
<!----------------------------------------------------------------------------------------------------------------------------------------->
<!--Badges ------------------------------------------------------------------------------------------------------------------------------>
<!----------------------------------------------------------------------------------------------------------------------------------------->
<h2 id="certification" onclick="window.location.hash='back'; ">
Certifications
</h2>
<!-- Badge -->
<div data-iframe-width="150" data-iframe-height="270" data-share-badge-id="e1a25a2b-f480-4232-8ab1-83ae3aac6c34" data-share-badge-host="https://www.credly.com"></div><script type="text/javascript" async src="//cdn.credly.com/assets/utilities/embed.js"></script>
<div class="social">
<div class="contact-icons">
<a href="mailto:[email protected]" title="email">
<i class="fa-solid fa-envelope">
</i>
</a>
<a href="https://scholar.google.com/citations?user=3FYw1OsAAAAJ" title="Google Scholar" rel="external nofollow noopener" target="_blank">
<i class="ai ai-google-scholar">
</i>
</a>
<a href="https://github.com/tuiaj" title="GitHub" rel="external nofollow noopener" target="_blank">
<i class="fa-brands fa-github">
</i>
</a>
<!--
<a href="/portfolio//feed.xml" title="RSS Feed">
<i class="fa-solid fa-square-rss">
</i>
</a>
-->
</div>
<div class="contact-note"> .
</div>
</div>
<br>
<!----------------------------------------------------------------------------------------------------------------------------------------->
<!--Counter ------------------------------------------------------------------------------------------------------------------------------>
<!----------------------------------------------------------------------------------------------------------------------------------------->
<div style="color: rgba(55, 100, 200, 0); text-align: right;">Website visit count:</div>
<div class="website-counter" style="color: rgba(55, 100, 200, 0); text-align: right;"></div>
</article>
</div>
</div>
<!--------<footer class="fixed-bottom"> -->
<footer>
<div style="background-color: rgba(55, 100, 200, 0); opacity: 1;color: rgba(55, 100, 200, 0);"> © Copyright 2023 Jordan Tuia. Powered by
<a href="https://jekyllrb.com/" target="_blank" rel="external nofollow noopener">Jekyll</a> with <a href="https://github.com/alshedivat/al-folio" rel="external nofollow noopener" target="_blank">al-folio</a> theme.
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous">
</script>
<script src="/portfolio/assets/js/bootstrap.bundle.min.js">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/mdb.min.js" integrity="sha256-NdbiivsvWt7VYCt6hYNT3h/th9vSTL4EDWeGs5SN3DA=" crossorigin="anonymous">
</script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/masonry.pkgd.min.js" integrity="sha256-Nn1q/fx0H7SNLZMQ5Hw5JLaTRZp0yILA/FRexe19VdI=" crossorigin="anonymous">
</script>
<script defer src="https://cdn.jsdelivr.net/npm/imagesloaded@4/imagesloaded.pkgd.min.js">
</script>
<script defer src="/portfolio/assets/js/masonry.js" type="text/javascript">
</script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/medium-zoom.min.js" integrity="sha256-7PhEpEWEW0XXQ0k6kQrPKwuoIomz8R8IYyuU1Qew4P8=" crossorigin="anonymous">
</script>
<script defer src="/portfolio/assets/js/zoom.js?7b30caa5023af4af8408a472dc4e1ebb">