Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CRAN-SUBMISSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Version: 3.11.0
Date: 2025-09-01 15:11:02 UTC
SHA: 784c4a8dcda6fc0301c8b0823efdfccb1291745e
Version: 3.12.0
Date: 2025-10-28 09:25:00 UTC
SHA: 0fb802cd699b4e4ec12b59f3d7f232c5d236cecf
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: FeatureExtraction
Type: Package
Title: Generating Features for a Cohort
Version: 3.11.0
Date: 2025-09-01
Version: 3.12.0
Date: 2025-10-28
Authors@R: c(
person("Martijn", "Schuemie", , "schuemie@ohdsi.org", role = c("aut")),
person("Marc", "Suchard", role = c("aut")),
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
FeatureExtraction 3.12.0
=======================

- Fix non reproducible behavior in removing redundant covariates when they are equally prevalent (#315)

FeatureExtraction 3.11.0
=======================

Expand Down
2 changes: 1 addition & 1 deletion R/Normalization.R
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ tidyCovariateData <- function(covariateData,
inner_join(covariateData$valueCounts, by = "covariateId") %>%
select(.data$analysisId, .data$covariateId, n) %>%
collect()
valueCounts <- valueCounts[order(valueCounts$analysisId, -valueCounts$n), ]
valueCounts <- valueCounts[order(valueCounts$analysisId, -valueCounts$n, valueCounts$covariateId), ]
deleteCovariateIds <- c(deleteCovariateIds, valueCounts$covariateId[!duplicated(valueCounts$analysisId)])
ignoreCovariateIds <- valueCounts$covariateId
ParallelLogger::logInfo("Removing ", length(deleteCovariateIds), " redundant covariates")
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.

8 changes: 4 additions & 4 deletions docs/articles/CreatingCovariatesBasedOnOtherCohorts.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/CreatingCovariatesUsingCohortAttributes.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/CreatingCustomCovariateBuilders.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/CreatingCustomCovariateBuildersKorean.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/UsingFeatureExtraction.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/UsingFeatureExtractionKorean.html

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

4 changes: 2 additions & 2 deletions docs/articles/index.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/authors.html

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

4 changes: 2 additions & 2 deletions docs/index.html

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

14 changes: 12 additions & 2 deletions docs/news/index.html

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

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ articles:
CreatingCustomCovariateBuildersKorean: CreatingCustomCovariateBuildersKorean.html
UsingFeatureExtraction: UsingFeatureExtraction.html
UsingFeatureExtractionKorean: UsingFeatureExtractionKorean.html
last_built: 2025-09-01T09:33Z
last_built: 2025-10-28T06:29Z
4 changes: 2 additions & 2 deletions docs/reference/CovariateData-class.html

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

4 changes: 2 additions & 2 deletions docs/reference/FeatureExtraction-package.html

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

Loading