Skip to content

Commit 44d4a5a

Browse files
authored
Create README.md
1 parent 3d89732 commit 44d4a5a

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# omgee
2+
This R package provides an implementation of the GEE method for estimating multinomial probabilties for clustered data, for independent and exchangeable correlation structure. For more details about the methodology see [citation].
3+
4+
## Installation
5+
There are a few methods available for installing the package. You need to have the `devtools` package installed to use these methods:
6+
```r
7+
> install.packages('devtools')
8+
```
9+
10+
### Using GitHub
11+
Use the `install_github` method from devtools to install directly from this repository:
12+
```r
13+
> devtools::install_github('https://github.com/Express50/omgee')
14+
```
15+
16+
### Using pre-built tar file
17+
Download the latest released .tar.gz file from the [Releases](https://github.com/Express50/omgee/releases) page into an empty folder. Then, navigate to the location of the file in your command line, and run the following from an R shell:
18+
```r
19+
> devtools::install('.', dependencies=TRUE)
20+
```
21+
22+
## Building
23+
You can also build the code yourself by cloning the repository and using `R CMD BUILD`. Make sure to install the `rootSolve` dependecy before installing `omgee`, by running `install.packages('rootSolve')`
24+
```sh
25+
> git clone https://github.com/Express50/omgee omgee
26+
> R CMD build omgee
27+
> R CMD INSTALL omgee_1.0.tar.gz
28+
```

0 commit comments

Comments
 (0)