Features
- Handles specifications of T-O-TAR-Subgroup pairs, and performs the calculation on the cross-product of the elements.
- Specify clean windows to account for immortal time after outcome.
- Allows multiple exposure and multiple outcomes per person accounting for time at risk and clean window paramaters.
Technology
CohortIncidence is an R package which wraps a Java library that implements most of the functions of the package.
Getting Started
R 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") Java library
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.
- First add the OHDSI Nexus repository so that maven can find and download the artifact automatically:
<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
User Documentation
Documentation can be found on the package website.
PDF versions of the documentation are also available: * Vignette: Using CohortIncidence
Support
- Developer questions/comments/feedback: OHDSI Forum
- We use the GitHub issue tracker for all bugs/issues/enhancements
Contributing
Read here how you can contribute to this package.