-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.Rmd
149 lines (133 loc) · 5 KB
/
about.Rmd
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
---
output: html_document
pagetitle: About
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{=html}
<style>
p{
font-size: 15px;
margin-bottom: .05em;
}
h2{
font-weight: 500;
}
h3{
font-weight: 500;
}
hr{
border: 1px solid gray;
}
title{
display: none;
}
</style>
```
<h2>About Me</h2><hr>
```{r websitedisplay, tidy=TRUE, echo=FALSE}
library(shiny)
fluidRow(
column(8,
p("Abhijit (Abhi) Bhattaru is a student in the 7-year medical program at The College of New Jersey (TCNJ) and Rutgers New Jersey Medical School (NJMS), with experience in research and statistical analysis. He has clinical experience in radiology, cardiology, and cardiovascular imaging with interests in applying emerging concepts of data science into clinical research. " ),br(),
p("Through involvement in research projects at the University of Pennsylvania and the University of Texas Southwestern, Abhi hopes to fortify his expertise and continue to explore the problems dear to him. At TCNJ, he is currently actively involved as a leader in the Ambassador program, AZ medical society, and other organizations while completing his coursework in Biology. "),br(),
p("He is committed to learning and fostering personal curiosity in numerous fields in efforts to make a lasting impact on his community. In his free time, he experiments with new skills including piano, origami, and 3D design."),br(),
style="word-wrap: break-word;" ),
column(4,
img(src='images/NewPic.png')
)
)
br()
h3("Research")
hr()
fluidRow(
column(3,
img(src='images/penn.png'),
em("Nuclear Cardiology"),
p("Current"),
br(),
em("Radiology"),
p("Current"),
br()
),
column(9,
em("Nuclear Cardiology and Cardiovascular Imaging"),
p("Focused on understanding and diagnosing various cardiovascular conditions using PET, CT, and MRI. Developing institutional database for a comprehensive, prospective study of trends, diagnoses, and treatments of cardiac sarcoidosis."),
br(),
em("Radiology"),
p("Leveraged nuclear medicine techniques to investigate patient susceptibility to various health conditions throughout the body. Used molecular imaging (PET) fused with structural imaging (CT) to determine standard uptake values of radiopharmaceutical tracers (18F-fluorodeoxyglucose (FDG)- and 18F-sodium fluoride (NaF)) using data visualization tools (Osirix MD, ROVER). Developed both scientific research and editorial reviews of current methodologies to advise the future direction of nuclear medicine."),
style="word-wrap: break-word;" )
)
br()
br()
fluidRow(
column(3,
img(src='images/ut.png'),
em("Pediatric Cardiology"),
p("Leads:Tarique Hussain and Animesh Tandon"),
p("Current"),
br()
),
column(9,
p("Researched novel methods to improve the lives of children with cardiac conditions. Focused on leveraging imaging techniques to draw correlations, especially cardiac Magnetic Resonance Imaging (cMRI) and Cardiac Computed Tomography (CCT). Able to perform advanced ventricular contours (Circle cvi42) and manipulate/manage EHR data (Epic). Improved and developed scripts in Python to analyze automated tissue tracking. Leveraged Virtual Reality (VR) to develop surgical planning and education tools for clinicians and medical students."),
style="word-wrap: break-word;" )
)
br()
br()
fluidRow(
column(3,
img(src='images/mit.jpg'),
em("Medlytics"),
p("Lead:Danelle Shah"),
p("Jun-Dec 2018"),
br(),
style="word-wrap: break-word;"
),
column(9,
p("Leveraged AI-based support tools to develop algorithms for automated diagnosis. Used clinically reported physiological signals and demographics to identify hypothyroidism (Decision trees, SVM, KNN). Used a series of waveform data to diagnose sleep apnea (CNN, ANN). Used unsupervised learning to detect tumor type and severity in mammogram images (K-means). Detected organ failure in motor vehicle trauma patients using ICU data from Beth Israel Deaconess Medical Center with high success and potential for future implementation."),
style="word-wrap: break-word;" )
)
br()
h3("Skills")
hr()
fluidRow(
column(3,
p("Clinical"),
HTML("
<ui>
<li>Osirix MD</li>
<li>Circle cvi 42</li>
<li>PACS</li>
<li>ROVER</li>
</ui>
")),
column(3,
p("Data Analysis"),
HTML("
<ui>
<li>R for computing</li>
<li>Excel</li>
</ui>
")),
column(3,
p("Programming"),
HTML("
<ui>
<li>Java</li>
<li>Python</li>
<li>HTML</li>
</ui>
")),
column(3,
p("Other"),
HTML("
<ui>
<li>3D modeling</li>
<li>Laser cutting</li>
<li>Power tools</li>
</ui>
"))
)
br()
```