Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
azimov committed Sep 19, 2023
2 parents f6dbbcf + acb99c3 commit 85bae99
Show file tree
Hide file tree
Showing 39 changed files with 127 additions and 122 deletions.
6 changes: 1 addition & 5 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@ Bug Fix:

1. Added support for newer API to OhdsiShinyModules (while maintaining support for old version)

CohortDiagnostics 3.2.3
=======================
Bug Fix:

1. Resolved issue with incidence rates sometimes exporting as null/infinite by setting to 0 in all error cases
2. Resolved issue with incidence rates sometimes exporting as null/infinite by setting to 0 in all error cases


CohortDiagnostics 3.2.3
Expand Down
4 changes: 2 additions & 2 deletions R/IncidenceRates.R
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ getIncidenceRate <- function(connectionDetails = NULL,
result$incidenceRate <-
1000 * result$cohortCount / result$personYears
result$incidenceRate[is.nan(result$incidenceRate) |
is.infinite(result$incidenceRate) |
is.null(result$incidenceRate)] <- 0
is.infinite(result$incidenceRate) |
is.null(result$incidenceRate)] <- 0
delta <- Sys.time() - start
ParallelLogger::logInfo(paste(
"Computing incidence rates took",
Expand Down
4 changes: 2 additions & 2 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/articles/CreatingAStudyPackage.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 31 additions & 31 deletions docs/articles/DatabaseModeInDiagnosticsExplorer.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/articles/RunningCohortDiagnostics.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions docs/articles/ViewingResultsUsingDiagnosticsExplorer.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 85bae99

Please sign in to comment.