Advertisement
Guest User

Untitled

a guest
Jun 16th, 2017
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.94 KB | None | 0 0
  1. # # apply response after field specification allows two possibilities
  2. # # apply: drop_entry - just replace field with NA
  3. # # apply: drop_episode - drop entire episode
  4. # # range checks for continuous data *must* use traffic light terms
  5. # # - red
  6. # # - amber
  7. # # - green
  8. # # also concept of nodata check which will drop episode if data is missing
  9. # # e.g. for something crucial like date of birth (age)
  10. # # nodata:
  11. # # apply: drop_episode
  12. # # set missingness yellow to -1 to prevent any data being dropped
  13.  
  14. # ===============================
  15. # = drop episode filters to add =
  16. # ===============================
  17. # - [ ] TODO(2016-06-16): data/time icu admit
  18. # - [ ] TODO(2016-06-16): data/time icu discharge
  19. # - [ ] TODO(2016-06-16): icu mortality
  20. # Maybe not drop these
  21. # - [ ] TODO(2016-06-16): data/time hospital admit
  22. # - [ ] TODO(2016-06-16): data/time hospital discharge
  23. # - [ ] TODO(2016-06-16): hospital mortality
  24.  
  25. # =====================================
  26. # = no data missingess for key fields =
  27. # =====================================
  28.  
  29. # - [ ] NOTE(2016-11-30): AGE comes from the anonymised data
  30. AGE:
  31. age: age
  32. dataItem: Age (via ccanonym)
  33. NIHR_HIC_ICU_0033:
  34. shortName: dob
  35. dataItem: Date of birth
  36.  
  37. NIHR_HIC_ICU_0001:
  38. shortName: pas_id
  39. dataItem: PAS number
  40. NIHR_HIC_ICU_0073:
  41. shortName: nhs_id
  42. dataItem: NHS number
  43. # - [ ] NOTE(2016-07-17): these are automatically imported and will cause duplicate problems if re-imported
  44. # NIHR_HIC_ICU_0002:
  45. # shortName: site_id
  46. # dataItem: ICNARC CMP number
  47. # distribution: nominal
  48. # nodata:
  49. # apply: drop_episode
  50. # NIHR_HIC_ICU_0005:
  51. # shortName: episode_id
  52. # dataItem: Critical care local identifier / ICNARC admission number
  53. NIHR_HIC_ICU_0108:
  54. shortName: hrate
  55. dataItem: Heart rate
  56. distribution: normal
  57. decimal_places: 0
  58. range:
  59. labels:
  60. red: (0, 300)
  61. amber: (11, 170)
  62. green: (60, 100)
  63. apply: drop_entry
  64. # missingness:
  65. # labels:
  66. # yellow: 24
  67. # accept_2d:
  68. # yellow: 70
  69. # impute_2d:
  70. # lead: 3
  71. # lag: 3
  72. # fun: median
  73. # apply: drop_episode
  74. NIHR_HIC_ICU_0122:
  75. shortName: lac_bg
  76. dataItem: Lactate - ABG
  77. distribution: skewed
  78. decimal_places: 1
  79. range:
  80. labels:
  81. red: (0, 30)
  82. amber: (0.1, 20)
  83. green: (0.4, 2.2)
  84. apply: drop_entry
  85. # missingness:
  86. # labels:
  87. # yellow: 24
  88. # accept_2d:
  89. # yellow: 70
  90. # impute_2d:
  91. # lead: 4
  92. # lag: 4
  93. # fun: median
  94. # apply: drop_episode
  95. NIHR_HIC_ICU_0093:
  96. shortName: sex
  97. dataItem: Sex
  98. distribution: binary
  99. category:
  100. levels: # beware case-sensitive
  101. M: male
  102. F: female
  103. NIHR_HIC_ICU_0097:
  104. shortName: dead_icu
  105. dataItem: Dead or alive on discharge
  106. distribution: binary
  107. category:
  108. levels:
  109. A: Alive
  110. D: Dead
  111. E: Alive - not discharged
  112. apply: drop_entry
  113. NIHR_HIC_ICU_0930:
  114. shortName: ult_dead_icu
  115. dataItem: Status at ultimate discharge from ICUHDU
  116. distribution: binary
  117. category:
  118. levels:
  119. A: Alive
  120. D: Dead
  121. E: Alive - not discharged
  122. apply: drop_entry
  123. NIHR_HIC_ICU_0112:
  124. shortName: bp_sys_a
  125. dataItem: Systolic Arterial blood pressure - Art BPSystolic Arterial blood pressure
  126. distribution: normal
  127. decimal_places: 0
  128. range:
  129. labels:
  130. red: (0, 300)
  131. amber: (50, 220)
  132. green: (80, 120)
  133. apply: drop_entry
  134. # missingness:
  135. # labels:
  136. # yellow: 24
  137. # accept_2d:
  138. # yellow: 70
  139. # impute_2d:
  140. # lead: 3
  141. # lag: 3
  142. # fun: median
  143. NIHR_HIC_ICU_0113:
  144. shortName: bp_sys_ni
  145. dataItem: Systolic Arterial blood pressure - NBPSystolic Arterial blood pressure
  146. distribution: normal
  147. decimal_places: 0
  148. range:
  149. labels:
  150. red: (0, 300)
  151. amber: (50, 220)
  152. green: (80, 120)
  153. apply: drop_entry
  154. # missingness:
  155. # labels:
  156. # yellow: 24
  157. # accept_2d:
  158. # yellow: 70
  159. # impute_2d:
  160. # lead: 3
  161. # lag: 3
  162. # fun: median
  163. NIHR_HIC_ICU_0114:
  164. shortName: bp_dia_a
  165. dataItem: Diastolic arterial blood pressure - Art BPDiastolic arterial blood pressure
  166. distribution: normal
  167. decimal_places: 0
  168. range:
  169. labels:
  170. red: (0, 250)
  171. amber: (20, 150)
  172. green: (50, 80)
  173. apply: drop_entry
  174. # missingness:
  175. # labels:
  176. # yellow: 24
  177. # accept_2d:
  178. # yellow: 70
  179. # impute_2d:
  180. # lead: 3
  181. # lag: 3
  182. # fun: median
  183. NIHR_HIC_ICU_0115:
  184. shortName: bp_dia_ni
  185. dataItem: Diastolic arterial blood pressure - NBPDiastolic arterial blood pressure
  186. distribution: normal
  187. decimal_places: 0
  188. range:
  189. labels:
  190. red: (0, 250)
  191. amber: (20, 150)
  192. green: (50, 80)
  193. apply: drop_entry
  194. # missingness:
  195. # labels:
  196. # yellow: 24
  197. # accept_2d:
  198. # yellow: 70
  199. # impute_2d:
  200. # lead: 3
  201. # lag: 3
  202. # fun: median
  203. NIHR_HIC_ICU_0110:
  204. shortName: bp_m_a
  205. dataItem: Mean arterial blood pressure - Art BPMean arterial blood pressure
  206. distribution: normal
  207. decimal_places: 0
  208. range:
  209. labels:
  210. red: (0, 270)
  211. amber: (30, 175)
  212. green: (60, 95)
  213. apply: drop_entry
  214. # missingness:
  215. # labels:
  216. # yellow: 24
  217. # accept_2d:
  218. # yellow: 70
  219. # impute_2d:
  220. # lead: 3
  221. # lag: 3
  222. # fun: median
  223. NIHR_HIC_ICU_0111:
  224. shortName: bp_m_ni
  225. dataItem: Mean arterial blood pressure - NBPMean arterial blood pressure
  226. distribution: normal
  227. decimal_places: 0
  228. range:
  229. labels:
  230. red: (0, 270)
  231. amber: (30, 175)
  232. green: (60, 95)
  233. apply: drop_entry
  234. # missingness:
  235. # labels:
  236. # yellow: 24
  237. # accept_2d:
  238. # yellow: 70
  239. # impute_2d:
  240. # lead: 3
  241. # lag: 3
  242. # fun: median
  243. NIHR_HIC_ICU_0398:
  244. shortName: adm_type
  245. dataItem: Admission type
  246. distribution: nominal
  247. category:
  248. levels:
  249. L: unplanned Local admission
  250. U: Unplanned transfer in
  251. P: Planned transfer in
  252. S: planned local Surgical admission
  253. M: planned local Medical admission
  254. R: Repatriation
  255. apply: drop_entry
  256. NIHR_HIC_ICU_0058:
  257. shortName: ethnic
  258. dataItem: Ethnicity
  259. distribution: nominal
  260. category:
  261. levels:
  262. A: white British
  263. B: white Irish
  264. C: white any other
  265. D: mixed white and black Caribbean
  266. E: mixed white and black African
  267. F: mixed white and Asian
  268. G: mixed any other
  269. H: Asian or Asian British - Indian
  270. J: Asian or Asian British - Pakistani
  271. K: Asian or Asian British - Bangladeshi
  272. L: Asian or Asian British - any other
  273. M: black or black British - Caribbean
  274. N: black or black British - African
  275. P: black or black British - any other
  276. R: other ethnic group - Chinese
  277. S: any other ethnic group
  278. Z: not stated
  279. apply: drop_entry
  280. NIHR_HIC_ICU_0077:
  281. shortName: loca_in_prior
  282. dataItem: Prior location (in)
  283. distribution: nominal
  284. category:
  285. levels:
  286. W: Ward
  287. B: oBstetric area
  288. M: other interMediate care area
  289. P: Paediatric/neonatal ICU/HCU
  290. I: level 3 bed in adult ICU or ICU/HDU
  291. H: level 2 bed in adult ICU or ICU/HDU
  292. U: adUlt HCU
  293. T: Theatre & recovery
  294. E: accident & Emergency
  295. R: Recovery only
  296. G: imaGing department
  297. S: Specialist treatment area
  298. C: Clinic
  299. N: Not in hospital
  300. apply: drop_entry
  301. NIHR_HIC_ICU_0068:
  302. shortName: loca_in
  303. dataItem: Location (in)
  304. distribution: nominal
  305. category:
  306. levels:
  307. W: Ward
  308. B: oBstetric area
  309. M: other interMediate care area
  310. P: Paediatric/neonatal ICU/HCU
  311. I: level 3 bed in adult ICU or ICU/HDU
  312. H: level 2 bed in adult ICU or ICU/HDU
  313. U: adUlt HCU
  314. T: Theatre & recovery
  315. E: accident & Emergency
  316. R: Recovery only
  317. G: imaGing department
  318. S: Specialist treatment area
  319. C: Clinic
  320. N: Not in hospital
  321. apply: drop_entry
  322. NIHR_HIC_ICU_0399:
  323. shortName: diag_admx1
  324. dataItem: Primary reason for admission to your unit
  325. distribution: nomimal
  326. NIHR_HIC_ICU_0088:
  327. shortName: diag_admx2
  328. dataItem: Secondary reasons for admission to your unit
  329. distribution: nominal
  330. NIHR_HIC_ICU_0095:
  331. shortName: dead_hosp
  332. dataItem: Status at discharge from your hospital
  333. distribution: binary
  334. category:
  335. levels:
  336. A: Alive
  337. D: Dead
  338. E: Alive - not discharged
  339. apply: drop_entry
  340. NIHR_HIC_ICU_0098:
  341. shortName: ult_dead_hosp
  342. dataItem: Status at ultimate discharge from hospital
  343. distribution: binary
  344. category:
  345. levels:
  346. A: Alive
  347. D: Dead
  348. E: Alive - not discharged
  349. apply: drop_entry
  350. NIHR_HIC_ICU_0409:
  351. shortName: apa_II_sc
  352. dataItem: APACHE II Score
  353. distribution: normal
  354. decimal_places: 0
  355. range:
  356. labels:
  357. red: (-1, 72)
  358. apply: drop_entry
  359. NIHR_HIC_ICU_0410:
  360. shortName: apa_II-pr
  361. dataItem: APACHE II Probability
  362. distribution: normal
  363. decimal_places: 0
  364. range:
  365. labels:
  366. red: (-1, 101)
  367. apply: drop_entry
  368. NIHR_HIC_ICU_0470:
  369. shortName: rx_norad
  370. dataItem: Noradrenaline
  371. distribution: normal
  372. decimal_places: 2
  373. range:
  374. labels:
  375. red: (-0.01, 3)
  376. amber: (-0.01, 1)
  377. apply: drop_entry
  378. NIHR_HIC_ICU_0469:
  379. shortName: rx_levos
  380. dataItem: Levosimendan
  381. distribution: normal
  382. decimal_places: 2
  383. range:
  384. labels:
  385. red: (-0.01, 0.2)
  386. amber: (-0.01, 0.1)
  387. apply: drop_entry
  388. NIHR_HIC_ICU_0027:
  389. shortName: ncepod
  390. dataItem: classification of surgery
  391. distribution: nominal
  392. category:
  393. levels:
  394. M: Emergency
  395. U: Urgent
  396. S: Scheduled
  397. L: eLective
  398. apply: drop_entry
  399. NIHR_HIC_ICU_0465:
  400. shortName: rx_adre
  401. dataItem: Adrenaline
  402. distribution: normal
  403. decimal_places: 2
  404. range:
  405. labels:
  406. red: (-0.01, 3)
  407. amber: (-0.01, 1)
  408. apply: drop_entry
  409. NIHR_HIC_ICU_0466:
  410. shortName: rx_dobu
  411. dataItem: Dobutamine
  412. distribution: normal
  413. decimal_places: 1
  414. range:
  415. labels:
  416. red: (-0.01, 50)
  417. amber: (-0.01, 25)
  418. green: (-0.01, 15)
  419. apply: drop_entry
  420. NIHR_HIC_ICU_0467:
  421. shortName: rx_dopa
  422. dataItem: Dopamine
  423. distribution: normal
  424. decimal_places: 1
  425. range:
  426. labels:
  427. red: (-0.01, 50)
  428. amber: (-0.01, 25)
  429. green: (-0.01, 5)
  430. apply: drop_entry
  431. NIHR_HIC_ICU_0564:
  432. shortName: rx_dopex
  433. dataItem: Dopexamine
  434. distribution: normal
  435. decimal_places: 2
  436. range:
  437. labels:
  438. red: (-0.01, 2)
  439. amber: (-0.01, 1)
  440. apply: drop_entry
  441. NIHR_HIC_ICU_0468:
  442. shortName: rx_enox
  443. dataItem: Enoximone
  444. distribution: normal
  445. decimal_places: 1
  446. range:
  447. labels:
  448. red: (-0.01, 40)
  449. amber: (-0.01, 20)
  450. apply: drop_entry
  451. NIHR_HIC_ICU_0252:
  452. shortName: rx_milr
  453. dataItem: Milrinone
  454. distribution: normal
  455. decimal_places: 3
  456. range:
  457. labels:
  458. red: (-0.01, 1)
  459. amber: (-0.01, 0.75)
  460. apply: drop_entry
  461. NIHR_HIC_ICU_0471:
  462. shortName: rx_vasopr
  463. dataItem: Vasopressin
  464. distribution: normal
  465. decimal_places: 2
  466. range:
  467. labels:
  468. red: (-0.01, 0.07)
  469. amber: (-0.01, 0.06)
  470. green: (-0.01, 0.04)
  471. apply: drop_entry
  472. NIHR_HIC_ICU_0565:
  473. shortName: rx_terlip
  474. dataItem: Terlipressin
  475. distribution: normal
  476. decimal_places: 2
  477. range:
  478. labels:
  479. red: (-0.01, 2)
  480. amber: (-0.01, 1)
  481. green: (-0.01, 0.25)
  482. apply: drop_entry
  483. NIHR_HIC_ICU_0462:
  484. shortName: propofol
  485. dataItem: Propofol
  486. distribution: normal
  487. decimal_places: 0
  488. missingness:
  489. range_red: 24
  490. range_yellow: 1
  491. NIHR_HIC_ICU_0558:
  492. shortName: ~
  493. dataItem: Thiopentone / Thiopental
  494. Classification4: Barbiturates
  495. distribution: normal
  496. decimal_places: 0
  497. missingness:
  498. range_red: 24
  499. range_yellow: 1
  500. NIHR_HIC_ICU_0463:
  501. shortName: ~
  502. dataItem: Midazolam
  503. distribution: normal
  504. decimal_places: 0
  505. missingness:
  506. range_red: 24
  507. range_yellow: 1
  508. NIHR_HIC_ICU_0559:
  509. shortName: ~
  510. dataItem: Clonidine
  511. distribution: normal
  512. decimal_places: 2
  513. missingness:
  514. range_red: 24
  515. range_yellow: 1
  516. NIHR_HIC_ICU_0560:
  517. shortName: Dexmed
  518. dataItem: Dexmedetomidine
  519. distribution: normal
  520. decimal_places: 2
  521. missingness:
  522. range_red: 24
  523. range_yellow: 1
  524. NIHR_HIC_ICU_0561:
  525. shortName: Keta
  526. dataItem: Ketamine
  527. distribution: normal
  528. decimal_places: 2
  529. missingness:
  530. range_red: 24
  531. range_yellow: 1
  532. NIHR_HIC_ICU_0242:
  533. shortName: fentanyl
  534. dataItem: Fentanyl
  535. distribution: normal
  536. decimal_places: 0
  537. missingness:
  538. range_red: 24
  539. range_yellow: 1
  540. NIHR_HIC_ICU_0563:
  541. shortName: ~
  542. dataItem: Morphine
  543. distribution: normal
  544. decimal_places: 1
  545. missingness:
  546. range_red: 24
  547. range_yellow: 1
  548. NIHR_HIC_ICU_0464:
  549. shortName: ~
  550. dataItem: Remifentanil
  551. distribution: normal
  552. decimal_places: 1
  553. missingness:
  554. range_red: 24
  555. range_yellow: 1
  556. NIHR_HIC_ICU_0160:
  557. shortName: RASS
  558. dataItem: Sedation score (hourly)
  559. distribution: ordinal
  560. decimal_places: 0
  561. range:
  562. labels:
  563. red: (-6, 5)
  564. apply: drop_entry
  565. NIHR_HIC_ICU_0184:
  566. shortName: platelets
  567. dataItem: Platelets
  568. distribution: skewed
  569. decimal_places: 0
  570. range:
  571. labels:
  572. red: (-1,5000)
  573. amber: (0,1000)
  574. green: (150, 400)
  575. apply: drop_entry
  576. NIHR_HIC_ICU_0174:
  577. shortName: bilirubin
  578. dataItem: Bilirubin
  579. distribution: skewed
  580. decimal_places: 0
  581. range:
  582. labels:
  583. red: (1,1000)
  584. amber: (5,500)
  585. green: (3, 20)
  586. apply: drop_entry
  587. NIHR_HIC_ICU_0132:
  588. shortName: pao2
  589. dataItem: PaO2 - ABG
  590. distribution: normal
  591. decimal_places: 2
  592. Units: kPa
  593. range:
  594. labels:
  595. red: (0,100)
  596. apply: drop_entry
  597. # NIHR_HIC_ICU_0126:
  598. # shortName: trachy
  599. # dataItem: Airway
  600. # distribution: nominal
  601. # levels:
  602. # comment:
  603. # arthur: |
  604. # # levels:
  605. # # Endotracheal tube (oral/nasal)
  606. # # Tracheostomy
  607. # # None
  608. # I am not sure about the name of those levels
  609. # Endotracheal tube (oral/nasal)
  610. # Tracheostomy
  611. # None
  612. NIHR_HIC_ICU_0549:
  613. shortName: rrate_spont
  614. dataItem: Spontaneous Respiratory Rate
  615. distribution: normal
  616. decimal_places: 0
  617. range:
  618. labels:
  619. red: (-1, 121)
  620. amber: (0, 100)
  621. green: (12, 20)
  622. apply: drop_entry
  623. # missingness:
  624. # labels:
  625. # yellow: 24
  626. # accept_2d:
  627. # yellow: 70
  628. # impute_2d:
  629. # lead: 3
  630. # lag: 3
  631. # fun: median
  632. # apply: drop_episode
  633. NIHR_HIC_ICU_0145:
  634. shortName: Total_Resp_Rate_Monit
  635. dataItem: Total respiratory rate (monitor)
  636. distribution: normal
  637. decimal_places: 0
  638. range:
  639. labels:
  640. red: (-1, 121)
  641. amber: (0, 100)
  642. green: (12, 20)
  643. apply: drop_entry
  644. # missingness:
  645. # labels:
  646. # yellow: 24
  647. # accept_2d:
  648. # yellow: 70
  649. # impute_2d:
  650. # lead: 3
  651. # lag: 3
  652. # fun: median
  653. # apply: drop_episode
  654. # NIHR_HIC_ICU_0147:
  655. # shortName: Mandat_Resp_Rate
  656. # dataItem: Mandatory Respiratory Rate
  657. # distribution: normal
  658. # decimal_places: 0
  659. # missingness:
  660. # range_red: 24
  661. # range_yellow: 1
  662. NIHR_HIC_ICU_0146:
  663. shortName: Total_Resp_Rate_Ventil
  664. dataItem: Total respiratory rate (ventilator)
  665. distribution: normal
  666. decimal_places: 0
  667. range:
  668. labels:
  669. red: (-1, 121)
  670. amber: (0, 100)
  671. green: (12, 20)
  672. apply: drop_entry
  673. # missingness:
  674. # labels:
  675. # yellow: 24
  676. # accept_2d:
  677. # yellow: 70
  678. # impute_2d:
  679. # lead: 3
  680. # lag: 3
  681. # fun: median
  682. # apply: drop_episode
  683. NIHR_HIC_ICU_0144:
  684. shortName: ventilated
  685. dataItem: Invasive or non-invasive (ventilation)
  686. distribution: binary
  687. category:
  688. levels:
  689. 1: invasive ventilation
  690. 2: non-invasive ventilation
  691. apply: drop_entry
  692. NIHR_HIC_ICU_0129:
  693. shortName: spo2
  694. dataItem: SpO2
  695. distribution: normal
  696. decimal_places: 0
  697. range:
  698. labels:
  699. red: (-1, 101)
  700. amber: (70,100)
  701. green: (92, 100)
  702. apply: drop_entry
  703. # NIHR_HIC_ICU_0550:
  704. # shortName: ~
  705. # dataItem: Tidal volume
  706. # distribution: normal
  707. # decimal_places: 0
  708. # missingness:
  709. # range_red: 24
  710. # range_yellow: 1
  711. NIHR_HIC_ICU_0150:
  712. shortName: fiO2
  713. dataItem: Inspired fraction of oxygen
  714. distribution: normal
  715. decimal_places: 2
  716. range:
  717. labels:
  718. red: (20,101)
  719. apply: drop_entry
  720. NIHR_HIC_ICU_0166:
  721. shortName: creatinine
  722. dataItem: Creatinine
  723. distribution: normal
  724. decimal_places: 0
  725. range:
  726. labels:
  727. red: (-1, 5000)
  728. amber: (20, 1000)
  729. green: (50, 120)
  730. apply: drop_entry
  731. NIHR_HIC_ICU_0162:
  732. shortName: urine1h
  733. dataItem: Urine output (hourly)
  734. distribution: normal
  735. decimal_places: 0
  736. range:
  737. labels:
  738. red: (-1, 2000)
  739. amber: (-1, 1000)
  740. apply: drop_entry
  741. # missingness:
  742. # range_red: 24
  743. # range_yellow: 6
  744. NIHR_HIC_ICU_0161:
  745. shortName: rrt
  746. dataItem: Renal replacement mode
  747. distribution: nominal
  748. category:
  749. levels:
  750. 1: CVVHF
  751. 2: CVVHDF
  752. apply: drop_entry
  753. NIHR_HIC_ICU_0156:
  754. shortName: gcs
  755. dataItem: GCS - total
  756. distribution: ordinal
  757. decimal_places: 0
  758. range:
  759. labels:
  760. red: (2, 16)
  761. apply: drop_entry
  762. # missingness:
  763. # range_yellow: 24
  764. NIHR_HIC_ICU_0913:
  765. shortName: pf_ratio
  766. distribution: normal
  767. decimal_places: 1
  768. dataItem: PaO2/FiO2 ratio
  769. range:
  770. labels:
  771. red: (0,100)
  772. apply: drop_entry
  773. # NIHR_HIC_ICU_0187:
  774. # shortName: micro_bug
  775. # distribution: nominal
  776. # dataItem: Organism
  777. # NIHR_HIC_ICU_0188:
  778. # shortName: micro_sens
  779. # distribution: nominal
  780. # dataItem: Sensitivity
  781. # # Start of the antimicrobials, leaving in classification for now
  782. # # Will be useful in assigning class
  783. NIHR_HIC_ICU_0414:
  784. shortName: ~
  785. Classification1: Drugs
  786. Classification2: Anti_microbials
  787. Classification3: Aminoglycosides
  788. Classification4: ~
  789. dataItem: Amikacin
  790. Units: mg
  791. sepsis3_abx: TRUE
  792. NIHR_HIC_ICU_0437:
  793. shortName: ~
  794. Classification1: Drugs
  795. Classification2: Anti_microbials
  796. Classification3: Aminoglycosides
  797. Classification4: ~
  798. dataItem: Gentamicin
  799. Units: mg
  800. sepsis3_abx: TRUE
  801. NIHR_HIC_ICU_0444:
  802. shortName: ~
  803. Classification1: Drugs
  804. Classification2: Anti_microbials
  805. Classification3: Aminoglycosides
  806. Classification4: ~
  807. dataItem: Neomycin
  808. Units: mg
  809. sepsis3_abx: FALSE
  810. NIHR_HIC_ICU_0459:
  811. shortName: ~
  812. Classification1: Drugs
  813. Classification2: Anti_microbials
  814. Classification3: Aminoglycosides
  815. Classification4: ~
  816. dataItem: Tobramycin
  817. Units: mg
  818. sepsis3_abx: TRUE
  819. NIHR_HIC_ICU_0447:
  820. shortName: ~
  821. Classification1: Drugs
  822. Classification2: Anti_microbials
  823. Classification3: Anti_protozoal
  824. Classification4: ~
  825. dataItem: Pentamidine
  826. Units: mg
  827. sepsis3_abx: TRUE
  828. NIHR_HIC_ICU_0434:
  829. shortName: ~
  830. Classification1: Drugs
  831. Classification2: Anti_microbials
  832. Classification3: Anti_tuberculous
  833. Classification4: ~
  834. dataItem: Ethambutal HCL
  835. Units: mg
  836. sepsis3_abx: TRUE
  837. NIHR_HIC_ICU_0438:
  838. shortName: ~
  839. Classification1: Drugs
  840. Classification2: Anti_microbials
  841. Classification3: Anti_tuberculous
  842. Classification4: ~
  843. dataItem: Isoniazid
  844. Units: mg
  845. sepsis3_abx: TRUE
  846. NIHR_HIC_ICU_0450:
  847. shortName: ~
  848. Classification1: Drugs
  849. Classification2: Anti_microbials
  850. Classification3: Anti_tuberculous
  851. Classification4: ~
  852. dataItem: Pyrazinamide
  853. Units: mg
  854. sepsis3_abx: TRUE
  855. NIHR_HIC_ICU_0452:
  856. shortName: ~
  857. Classification1: Drugs
  858. Classification2: Anti_microbials
  859. Classification3: Anti_tuberculous
  860. Classification4: ~
  861. dataItem: Rifampacin
  862. Units: tab
  863. sepsis3_abx: TRUE
  864. NIHR_HIC_ICU_0453:
  865. shortName: ~
  866. Classification1: Drugs
  867. Classification2: Anti_microbials
  868. Classification3: Anti_tuberculous
  869. Classification4: ~
  870. dataItem: Rifater
  871. Units: tab
  872. sepsis3_abx: TRUE
  873. NIHR_HIC_ICU_0454:
  874. shortName: ~
  875. Classification1: Drugs
  876. Classification2: Anti_microbials
  877. Classification3: Anti_tuberculous
  878. Classification4: ~
  879. dataItem: Rifinah
  880. Units: tab
  881. sepsis3_abx: TRUE
  882. NIHR_HIC_ICU_0432:
  883. shortName: ~
  884. Classification1: Drugs
  885. Classification2: Anti_microbials
  886. Classification3: Carbapenems
  887. Classification4: ~
  888. dataItem: Ertapenem
  889. Units: g
  890. sepsis3_abx: TRUE
  891. NIHR_HIC_ICU_0441:
  892. shortName: ~
  893. Classification1: Drugs
  894. Classification2: Anti_microbials
  895. Classification3: Carbapenems
  896. Classification4: ~
  897. dataItem: Meropenem
  898. Units: g
  899. sepsis3_abx: TRUE
  900. range:
  901. labels:
  902. red: (0, 2001)
  903. amber: (0, 2.1)
  904. apply: drop_entry
  905. NIHR_HIC_ICU_0418:
  906. shortName: ~
  907. Classification1: Drugs
  908. Classification2: Anti_microbials
  909. Classification3: Cephalosporins
  910. Classification4: ~
  911. dataItem: Cefotaxime
  912. Units: g
  913. sepsis3_abx: TRUE
  914. NIHR_HIC_ICU_0419:
  915. shortName: ~
  916. Classification1: Drugs
  917. Classification2: Anti_microbials
  918. Classification3: Cephalosporins
  919. Classification4: ~
  920. dataItem: Ceftazidime
  921. Units: g
  922. sepsis3_abx: TRUE
  923. NIHR_HIC_ICU_0420:
  924. shortName: ~
  925. Classification1: Drugs
  926. Classification2: Anti_microbials
  927. Classification3: Cephalosporins
  928. Classification4: ~
  929. dataItem: Ceftriaxone
  930. Units: g
  931. sepsis3_abx: TRUE
  932. NIHR_HIC_ICU_0421:
  933. shortName: ~
  934. Classification1: Drugs
  935. Classification2: Anti_microbials
  936. Classification3: Cephalosporins
  937. Classification4: ~
  938. dataItem: Cefuroxime
  939. Units: mg
  940. sepsis3_abx: TRUE
  941. NIHR_HIC_ICU_0422:
  942. shortName: ~
  943. Classification1: Drugs
  944. Classification2: Anti_microbials
  945. Classification3: Chloramphenicol
  946. Classification4: ~
  947. dataItem: Chloramphenicol
  948. Units: mg
  949. sepsis3_abx: TRUE
  950. NIHR_HIC_ICU_0436:
  951. shortName: ~
  952. Classification1: Drugs
  953. Classification2: Anti_microbials
  954. Classification3: Fusidanes
  955. Classification4: ~
  956. dataItem: Fuscidic acid
  957. Units: mg
  958. sepsis3_abx: TRUE
  959. NIHR_HIC_ICU_0456:
  960. shortName: ~
  961. Classification1: Drugs
  962. Classification2: Anti_microbials
  963. Classification3: Fusidanes
  964. Classification4: ~
  965. dataItem: Sodium Fusidate
  966. Units: mg
  967. sepsis3_abx: TRUE
  968. NIHR_HIC_ICU_0457:
  969. shortName: ~
  970. Classification1: Drugs
  971. Classification2: Anti_microbials
  972. Classification3: Glycopeptides
  973. Classification4: ~
  974. dataItem: Teicoplanin
  975. Units: mg
  976. sepsis3_abx: TRUE
  977. NIHR_HIC_ICU_0461:
  978. shortName: ~
  979. Classification1: Drugs
  980. Classification2: Anti_microbials
  981. Classification3: Glycopeptides
  982. Classification4: ~
  983. dataItem: Vancomycin
  984. Units: mg
  985. sepsis3_abx: TRUE
  986. NIHR_HIC_ICU_0425:
  987. shortName: ~
  988. Classification1: Drugs
  989. Classification2: Anti_microbials
  990. Classification3: Lincosamides
  991. Classification4: ~
  992. dataItem: Clindamycin
  993. Units: mg
  994. sepsis3_abx: TRUE
  995. NIHR_HIC_ICU_0416:
  996. shortName: ~
  997. Classification1: Drugs
  998. Classification2: Anti_microbials
  999. Classification3: Macrolides
  1000. Classification4: ~
  1001. dataItem: Azithromycin
  1002. Units: mg
  1003. sepsis3_abx: TRUE
  1004. NIHR_HIC_ICU_0424:
  1005. shortName: ~
  1006. Classification1: Drugs
  1007. Classification2: Anti_microbials
  1008. Classification3: Macrolides
  1009. Classification4: ~
  1010. dataItem: Clarithromycin
  1011. Units: mg
  1012. sepsis3_abx: TRUE
  1013. NIHR_HIC_ICU_0433:
  1014. shortName: ~
  1015. Classification1: Drugs
  1016. Classification2: Anti_microbials
  1017. Classification3: Macrolides
  1018. Classification4: ~
  1019. dataItem: Erythromycin
  1020. Units: mg
  1021. sepsis3_abx: TRUE
  1022. NIHR_HIC_ICU_0445:
  1023. shortName: ~
  1024. Classification1: Drugs
  1025. Classification2: Anti_microbials
  1026. Classification3: Nitrofurans
  1027. Classification4: ~
  1028. dataItem: Nitrofurantion
  1029. Units: mg
  1030. sepsis3_abx: TRUE
  1031. NIHR_HIC_ICU_0442:
  1032. shortName: ~
  1033. Classification1: Drugs
  1034. Classification2: Anti_microbials
  1035. Classification3: Nitroimidazole
  1036. Classification4: ~
  1037. dataItem: Metronidazole
  1038. Units: mg
  1039. sepsis3_abx: TRUE
  1040. NIHR_HIC_ICU_0440:
  1041. shortName: ~
  1042. Classification1: Drugs
  1043. Classification2: Anti_microbials
  1044. Classification3: Oxazolidinone
  1045. Classification4: ~
  1046. dataItem: Linezolid
  1047. Units: mg
  1048. sepsis3_abx: TRUE
  1049. NIHR_HIC_ICU_0415:
  1050. shortName: ~
  1051. Classification1: Drugs
  1052. Classification2: Anti_microbials
  1053. Classification3: Penicillins
  1054. Classification4: ~
  1055. dataItem: Amoxicillin
  1056. Units: mg
  1057. sepsis3_abx: TRUE
  1058. NIHR_HIC_ICU_0417:
  1059. shortName: ~
  1060. Classification1: Drugs
  1061. Classification2: Anti_microbials
  1062. Classification3: Penicillins
  1063. Classification4: ~
  1064. dataItem: Benzylpenicillin
  1065. Units: mg
  1066. sepsis3_abx: TRUE
  1067. NIHR_HIC_ICU_0426:
  1068. shortName: ~
  1069. Classification1: Drugs
  1070. Classification2: Anti_microbials
  1071. Classification3: Penicillins
  1072. Classification4: ~
  1073. dataItem: Co-Amoxiclav
  1074. Units: mg
  1075. sepsis3_abx: TRUE
  1076. NIHR_HIC_ICU_0435:
  1077. shortName: ~
  1078. Classification1: Drugs
  1079. Classification2: Anti_microbials
  1080. Classification3: Penicillins
  1081. Classification4: ~
  1082. dataItem: Flucloxacillin
  1083. Units: mg
  1084. sepsis3_abx: TRUE
  1085. NIHR_HIC_ICU_0448:
  1086. shortName: ~
  1087. Classification1: Drugs
  1088. Classification2: Anti_microbials
  1089. Classification3: Penicillins
  1090. Classification4: ~
  1091. dataItem: Phenoxymethylpenicillin
  1092. Units: mg
  1093. sepsis3_abx: TRUE
  1094. NIHR_HIC_ICU_0449:
  1095. shortName: ~
  1096. Classification1: Drugs
  1097. Classification2: Anti_microbials
  1098. Classification3: Penicillins
  1099. Classification4: ~
  1100. dataItem: Piperacillin/Tazobactam
  1101. Units: g
  1102. sepsis3_abx: TRUE
  1103. NIHR_HIC_ICU_0427:
  1104. shortName: ~
  1105. Classification1: Drugs
  1106. Classification2: Anti_microbials
  1107. Classification3: Polymyxins
  1108. Classification4: ~
  1109. dataItem: Colistin
  1110. Units: megaunits
  1111. sepsis3_abx: TRUE
  1112. NIHR_HIC_ICU_0423:
  1113. shortName: ~
  1114. Classification1: Drugs
  1115. Classification2: Anti_microbials
  1116. Classification3: Quinolones
  1117. Classification4: ~
  1118. dataItem: Ciprofloxacin
  1119. Units: mg
  1120. sepsis3_abx: TRUE
  1121. NIHR_HIC_ICU_0439:
  1122. shortName: ~
  1123. Classification1: Drugs
  1124. Classification2: Anti_microbials
  1125. Classification3: Quinolones
  1126. Classification4: ~
  1127. dataItem: Levofloxacin
  1128. Units: mg
  1129. sepsis3_abx: TRUE
  1130. NIHR_HIC_ICU_0443:
  1131. shortName: ~
  1132. Classification1: Drugs
  1133. Classification2: Anti_microbials
  1134. Classification3: Quinolones
  1135. Classification4: ~
  1136. dataItem: Moxifloxacin
  1137. Units: mg
  1138. sepsis3_abx: TRUE
  1139. NIHR_HIC_ICU_0446:
  1140. shortName: ~
  1141. Classification1: Drugs
  1142. Classification2: Anti_microbials
  1143. Classification3: Quinolones
  1144. Classification4: ~
  1145. dataItem: Ofloxacin
  1146. Units: mg
  1147. sepsis3_abx: TRUE
  1148. NIHR_HIC_ICU_0428:
  1149. shortName: ~
  1150. Classification1: Drugs
  1151. Classification2: Anti_microbials
  1152. Classification3: Sulfonamides_trimethoprim
  1153. Classification4: ~
  1154. dataItem: Co-Trimoxazole
  1155. Units: mg
  1156. sepsis3_abx: TRUE
  1157. NIHR_HIC_ICU_0460:
  1158. shortName: ~
  1159. Classification1: Drugs
  1160. Classification2: Anti_microbials
  1161. Classification3: Sulfonamides_trimethoprim
  1162. Classification4: ~
  1163. dataItem: Trimethoprim
  1164. Units: mg
  1165. sepsis3_abx: TRUE
  1166. NIHR_HIC_ICU_0429:
  1167. shortName: ~
  1168. Classification1: Drugs
  1169. Classification2: Anti_microbials
  1170. Classification3: Tetracyclines
  1171. Classification4: ~
  1172. dataItem: Demeclocycline HCL
  1173. Units: mg
  1174. sepsis3_abx: FALSE
  1175. NIHR_HIC_ICU_0430:
  1176. shortName: ~
  1177. Classification1: Drugs
  1178. Classification2: Anti_microbials
  1179. Classification3: Tetracyclines
  1180. Classification4: ~
  1181. dataItem: Doxycycline
  1182. Units: mg
  1183. sepsis3_abx: TRUE
  1184. NIHR_HIC_ICU_0458:
  1185. shortName: ~
  1186. Classification1: Drugs
  1187. Classification2: Anti_microbials
  1188. Classification3: Tetracyclines
  1189. Classification4: ~
  1190. dataItem: Tigecycline
  1191. Units: mg
  1192. sepsis3_abx: TRUE
  1193. NIHR_HIC_ICU_0411:
  1194. shortName: dt_icu_admit
  1195. dataItem: Date & Time of admission to your unit
  1196. NIHR_HIC_ICU_0412:
  1197. shortName: dt_icu_dc
  1198. dataItem: Date & Time of discharge from your unit
  1199. NIHR_HIC_ICU_0032:
  1200. shortName: dt_hosp_admit
  1201. dataItem: Date of admission to your hospital
  1202. NIHR_HIC_ICU_0406:
  1203. shortName: dt_hosp_dc
  1204. dataItem: Date of discharge from your hospital
  1205. NIHR_HIC_ICU_0024:
  1206. shortName: pmhx_chemo
  1207. dataItem: Chemotherapy (within the last 6months) steroids alone excluded
  1208. NIHR_HIC_ICU_0080:
  1209. shortName: pmhx_dxt
  1210. dataItem: Radiotherapy
  1211. NIHR_HIC_ICU_0029:
  1212. shortName: pmhx_immuncomp
  1213. dataItem: Congenital immunohumoral or cellular immune deficiency state
  1214. NIHR_HIC_ICU_0010:
  1215. shortName: pmhx_leuk_acute
  1216. dataItem: Acute myeloid/lymphocytic leukaemia or myeloma
  1217. NIHR_HIC_ICU_0025:
  1218. shortName: pmhx_leuk_chronic
  1219. dataItem: Chronic myelogenous /lymphocytic leukaemia
  1220. NIHR_HIC_ICU_0070:
  1221. shortName: pmhx_lymphoma
  1222. dataItem: Lymphoma
  1223. NIHR_HIC_ICU_0071:
  1224. shortName: pmhx_metastatic
  1225. dataItem: Metastatic disease
  1226. NIHR_HIC_ICU_0026:
  1227. shortName: pmhx_crrt
  1228. dataItem: Chronic renal replacement therapy
  1229. NIHR_HIC_ICU_0016:
  1230. shortName: pmhx_cirrhosis
  1231. dataItem: Biopsy proven cirrhosis
  1232. NIHR_HIC_ICU_0060:
  1233. shortName: pmhx_alf
  1234. dataItem: Heaptic encephalopathy
  1235. NIHR_HIC_ICU_0075:
  1236. shortName: pmhx_portal_htn
  1237. dataItem: Portal hypertension
  1238. NIHR_HIC_ICU_0062:
  1239. shortName: pmhx_hiv
  1240. dataItem: HIV/AIDS
  1241. NIHR_HIC_ICU_0063:
  1242. shortName: pmhx_home_vent
  1243. dataItem: Home ventilation
  1244. NIHR_HIC_ICU_0092:
  1245. shortName: pmhx_severe_rs
  1246. dataItem: Severe respiratory disease
  1247. NIHR_HIC_ICU_0099:
  1248. shortName: pmhx_steroids
  1249. dataItem: Steroid treatment
  1250. NIHR_HIC_ICU_0107:
  1251. shortName: pmhx_severe_cvs
  1252. dataItem: Very severe cardiovascular disease
  1253. NIHR_HIC_ICU_0074:
  1254. shortName: pmhx_other
  1255. dataItem: Other condition in past medical history
  1256. NIHR_HIC_ICU_0055:
  1257. shortName: pmhx_depend
  1258. dataItem: Dependency prior to admission
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement