-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
32 lines (24 loc) · 813 Bytes
/
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
---
output:
md_document:
variant: markdown_github
---
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# MME
MME is an R package providing a method to fit univariate and multivariate mixtures of Erlang distributions to possibly censored and/or truncated data. The censoring and/or truncation can be left, right or interval.
## Installation
To install the current development version from github you need the [devtools package](http://cran.r-project.org/web/packages/devtools/index.html) and the other packages on which MME depends:
```{r, eval = FALSE}
install.packages(c("devtools", "doParallel", "foreach", "matrixStats", "parallel"))
```
To install MME run:
```{r, eval = FALSE}
library(devtools)
install_github("RoelVerbelen/MME")
```