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
2 changes: 1 addition & 1 deletion mimic-iii/concepts/severityscores/lods.sql
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ left join `physionet-data.mimiciii_derived.labs_first_day` labs
(
select
cohort.*
-- Below code calculates the component scores needed for SAPS
-- Below code calculates the component scores needed for LODS

-- neurologic
, case
Expand Down
2 changes: 1 addition & 1 deletion mimic-iii/concepts_postgres/severityscores/lods.sql
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ WITH cpap AS (
ON ie.icustay_id = labs.icustay_id
), scorecomp AS (
SELECT
cohort.*, /* Below code calculates the component scores needed for SAPS */ /* neurologic */
cohort.*, /* Below code calculates the component scores needed for LODS */ /* neurologic */
CASE
WHEN mingcs IS NULL
THEN NULL
Expand Down
2 changes: 1 addition & 1 deletion mimic-iv/concepts/score/lods.sql
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ WITH cpap AS (
, scorecomp AS (
SELECT
cohort.*
-- Below code calculates the component scores needed for SAPS
-- Below code calculates the component scores needed for LODS

-- neurologic
, CASE
Expand Down
2 changes: 1 addition & 1 deletion mimic-iv/concepts_postgres/score/lods.sql
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ WITH cpap AS (
ON ie.stay_id = labs.stay_id
), scorecomp AS (
SELECT
cohort.*, /* Below code calculates the component scores needed for SAPS */ /* neurologic */
cohort.*, /* Below code calculates the component scores needed for LODS */ /* neurologic */
CASE
WHEN gcs_min IS NULL
THEN NULL
Expand Down
Loading