From e96b08e74a609ee9ffa0f1c0d83a5dd36564db2d Mon Sep 17 00:00:00 2001 From: Manuel Burger Date: Mon, 16 Dec 2024 11:52:59 -0800 Subject: [PATCH] Fix range to be sensible given the unit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1a3218d6..3c27e0cc 100644 --- a/README.md +++ b/README.md @@ -203,13 +203,13 @@ There are two types of predicates that can be defined in the configuration file, #### Plain Predicates -"Plain" predicates represent explicit values (either `str` or `int`) in your dataset at a particular timestamp and has 1 required `code` field (for string categorical variables) and 4 optional fields (for integer or float continuous variables). For instance, the following defines a predicate representing normal SpO2 levels (a range of 90-120 corresponding to rows where the `lab` column is `O2 saturation pulseoxymetry (%)`): +"Plain" predicates represent explicit values (either `str` or `int`) in your dataset at a particular timestamp and has 1 required `code` field (for string categorical variables) and 4 optional fields (for integer or float continuous variables). For instance, the following defines a predicate representing normal SpO2 levels (a range of 90-100 corresponding to rows where the `lab` column is `O2 saturation pulseoxymetry (%)`): ```yaml normal_spo2: code: lab//O2 saturation pulseoxymetry (%) # required // value_min: 90 # optional - value_max: 120 # optional + value_max: 100 # optional value_min_inclusive: true # optional value_max_inclusive: true # optional other_cols: {} # optional