Skip to content
Open
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
1 change: 0 additions & 1 deletion mimic-iii/concepts/severityscores/lods.sql
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ select
when urineoutput >= 10000.0 then 3
when creatinine_max >= 1.20 then 1
when bun_max >= 17.0 then 1
when bun_max >= 7.50 then 1
else 0
end as renal

Expand Down
2 changes: 0 additions & 2 deletions mimic-iii/concepts_duckdb/severityscores/lods.sql
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,6 @@ WITH cpap AS (
THEN 1
WHEN bun_max >= 17.0
THEN 1
WHEN bun_max >= 7.50
THEN 1
ELSE 0
END AS renal,
CASE
Expand Down
2 changes: 0 additions & 2 deletions mimic-iii/concepts_postgres/severityscores/lods.sql
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,6 @@ WITH cpap AS (
THEN 1
WHEN bun_max >= 17.0
THEN 1
WHEN bun_max >= 7.50
THEN 1
ELSE 0
END AS renal, /* pulmonary */
CASE
Expand Down
1 change: 0 additions & 1 deletion mimic-iv/concepts/score/lods.sql
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ WITH cpap AS (
WHEN urineoutput >= 10000.0 THEN 3
WHEN creatinine_max >= 1.20 THEN 1
WHEN bun_max >= 17.0 THEN 1
WHEN bun_max >= 7.50 THEN 1
ELSE 0
END AS renal

Expand Down
2 changes: 0 additions & 2 deletions mimic-iv/concepts_duckdb/score/lods.sql
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,6 @@ WITH cpap AS (
THEN 1
WHEN bun_max >= 17.0
THEN 1
WHEN bun_max >= 7.50
THEN 1
ELSE 0
END AS renal,
CASE
Expand Down
2 changes: 0 additions & 2 deletions mimic-iv/concepts_postgres/score/lods.sql
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,6 @@ WITH cpap AS (
THEN 1
WHEN bun_max >= 17.0
THEN 1
WHEN bun_max >= 7.50
THEN 1
ELSE 0
END AS renal, /* pulmonary */
CASE
Expand Down