-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpen_source.html
116 lines (101 loc) · 2.66 KB
/
Open_source.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Belay Birlie Yimer software</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
img {
border-radius: 50%;
}
body {
max-width: 1080px;
margin: 0 auto !important;
float: none !important;
text-align: left;
font-family: Arial, Helvetica, sans-serif;
}
/* Style the header */
header {
background-color: white;
padding: 20px;
text-align: center;
font-size: 20px;
color: rgb(2, 18, 69);
column-count: 1;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 20px 10px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #04AA6D;
color: white;
}
article {
margin-left: 30px;
margin-right: 30px;
padding: 20px;
width: 80%;
background-color: white;
}
/* Clear floats after the columns */
section::after {
content: "";
display: table;
clear: both;
}
/* Style the footer */
footer {
background-color: #777;
padding: 10px;
text-align: center;
color: white;
}
</style>
</head>
<body>
<div class="topnav">
<a href="index.html">Home</a>
<a href="Research.html">Research</a>
<a href="teaching.html">Teaching & talks</a>
<a href="publication.html">Publication</a>
<a class = "active" href = "Open_source.html"> Open-source tools</a>
<a href="contact.html">Contact</a>
<a href="CV.pdf">CV</a>
</div>
<header>
<img src="myimage1.jpg" alt="myimage" style="width:200px">
<h1>Belay Birlie Yimer</h1>
<h2 style="font-family: 'Brush Script MT', cursive;">Embrace uncertainty, be adaptive, be robust, and scale well! </h2>
</header>
<article>
<h1>Open-source tools</h1>
<ul>
<li>drugprepr: R package for the transparent and efficient
preparation of CPRD drug data into information on
individuals' drug use over time
<a href="https://CRAN.R-project.org/package=drugprep">CRAN</a>
<a href="https://github.com/belayb/drugprepr">github</a></li>
<li>BayesGmed: An R package for Bayesian causal mediation analysis using the g-formula approach
<a href="https://github.com/belayb/BayesGmed">github</a></li>
<li>doseminer: Extract Drug Dosages from Free-Text Prescriptions <a href="https://CRAN.R-project.org/package=drugprep">CRAN</a></li>
</ul>
</article>
</body>
</html>