-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathREADME.Rmd
More file actions
37 lines (29 loc) · 1.17 KB
/
README.Rmd
File metadata and controls
37 lines (29 loc) · 1.17 KB
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
---
output:
github_document:
html_preview: false
---
[](https://cran.r-project.org/package=medrc)
[](https://travis-ci.org/DoseResponse/medrc)
[](https://cranlogs.r-pkg.org/)
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# medrc
## Overview
The medrc package is an extension to the package drc that allows you to fit hierarchical dose-response models and provides inferenc for derived parameters like the effective dose or benchmark doses.
Parameters are estimated with a two-stage approach using the package metafor, or using the Lindstrom-Bates algorithm implemented in the package nlme.
## Installation
```{r, eval = FALSE}
## You can install medrc from GitHub
# install.packages("devtools")
## first installing drc and drcData
devtools::install_github("DoseResponse/drcData")
devtools::install_github("DoseResponse/drc")
## then installing the development version of medrc
devtools::install_github("DoseResponse/medrc")
```