CohortIncidence is an R package which wraps a Java library that implements most of the functions of the package.
See the instructions here for configuring your R environment, including Java.
In R, use the following commands to download and install CohortIncidence:
install.packages("remotes")
library(remotes)
install_github("ohdsi/CohortIncidence")
The Java library is hosted in an OHDSI Nexus repo, so you only need to add the repository and dependnecy to your maven.xml file in order to use it in your own Java project.
<repositories>
<repository>
<id>ohdsi</id>
<name>repo.ohdsi.org</name>
<url>https://repo.ohdsi.org/nexus/content/groups/public</url>
</repository>
</repositories>
2: Include the CohortIncidence dependency in your pom.xml
Documentation can be found on the package website.
PDF versions of the documentation are also available: * Vignette: Using CohortIncidence
Read here how you can contribute to this package.