-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
66 lines (55 loc) · 2.17 KB
/
README.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
---
output: md_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
<!-- badges: start -->
[![CRAN Version](https://img.shields.io/cran/v/lodi?style=flat-square)](https://cran.r-project.org/package=lodi)
[![GitHub Release](https://img.shields.io/github/v/release/umich-cphds/lodi?include_prereleases&label=Github&style=flat-square)](https://github.com/umich-cphds/lodi)
[![Travis CI](https://img.shields.io/travis/umich-cphds/lodi?style=flat-square)](https://travis-ci.org/umich-cphds/lodi)
<!-- badges: end -->
# Limit of Detection Multiple Imputation
`lodi` is a R package that implements censored likelihood multiple
imputation (CLMI) for single pollutant models with exposure
biomarkers below their respective detection limits. `lodi` also
contains implementations for standard methods such as single
imputation with a constant and complete-case analysis, although
those methods are primarily designed for comparison with `clmi`.
## Installation
`lodi` requires `rlang >= 0.3.0` to be installed, so you may
want to install or update `rlang` before installing `lodi`.
The package can be installed from CRAN
```{r, eval = F}
install.packages("lodi")
```
Or from Github
```{r, eval = F}
# install.packages("devtools")
devtools::install_github("umich-cphds/lodi", build_opts = c())
```
The Github version may contain bug fixes not yet present on CRAN,
so if you are experiencing issues, you may want to try the Github
version of the package.
## Example
Once `lodi` is installed, you can load up R and type
```
vignete("lodi")
```
to learn how to use the method.
## Bugs
If you encounter a bug, please open an issue on the [Issues](https://github.com/umich-cphds/lodi/issues) tab on Github or send
us an email.
## Contact
For questions or feedback, please email Jonathan Boss at
<bossjona@umich.edu> or Alexander Rix <alexrix@umich.edu>.
## References
Boss J, Mukherjee B, Ferguson KK, et al. Estimating outcome-exposure
associations when exposure biomarker detection limits vary across batches.
*Epidemiology*. 2019;30(5):746-755.
[10.1097/EDE.0000000000001052](https://doi.org/10.1097/EDE.0000000000001052)