Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Identifying Cannabis abusers #47

Open
kuls1 opened this issue Feb 20, 2018 · 6 comments
Open

Identifying Cannabis abusers #47

kuls1 opened this issue Feb 20, 2018 · 6 comments

Comments

@kuls1
Copy link

kuls1 commented Feb 20, 2018

I am interested in selecting Cannabis abusers population. I am surprised to see that there are no Cannabis abusers in this data set, especially when it's coming from ~400 ICU's. I can identify Cocaine users, but for some reason, there are no cannabis users in this data. I have tried searching using both ICD9 and ICD10 codes. Is this for real? Has anyone else observed this?

Here is my code

DROP MATERIALIZED VIEW IF EXISTS diagnosis_icd10 CASCADE;

CREATE MATERIALIZED VIEW diagnosis_icd10 as

(SELECT *, split_part(icd9code, ',', 1) AS icd9
     , split_part(icd9code, ', ', 2) AS icd10
FROM   eicu.diagnosis);

SELECT *
FROM diagnosis_icd10
WHERE icd9 = ANY('{'304.30','304.31','304.32','304.33','305.20','305.21','305.22','305.23',}'); 

-- Also tried searching text in diagnosisstring
SELECT *
FROM eicu.diagnosis
where diagnosisstring similar to '%((marijuana)|(cannabis))%';

@jraffa
Copy link
Contributor

jraffa commented Feb 20, 2018

It's unclear what the aim of your study is, but I am unsure if this approach is an appropriate way to identify "abusers". The cocaine users I can easily identify are those who have overdosed (are these the same ones you have found?).

None of the codes you have listed for cannabis are for an overdose, so maybe this isn't as surprising.

Perhaps a clinician will correct me, but the ICU is unlikely to be a place to be for inpatient cannabis treatment (for addiction, overdose, withdrawal etc), whereas for opiates, cocaine and alcohol it can be a place for these. If you are looking for an estimate of the prevalence of cannabis use, I would suggest using another dataset. There will be a lot of variation in data collection practices by hospital, and I would believe particularly for things such as this.

(Also, please follow the instructions at: https://eicu-crd.mit.edu/help/ to post future questions. This repository is intended for managing website content only).

@christinium
Copy link

christinium commented Feb 20, 2018 via email

@jraffa
Copy link
Contributor

jraffa commented Feb 20, 2018

FYI, No discharge summaries in eICU.

@kuls1
Copy link
Author

kuls1 commented Feb 20, 2018

No, I am not planning a prevalence study. At the moment I want to identify patients with substance use disorder. I am using the ICD9 codes found here: https://www.ncbi.nlm.nih.gov/books/NBK310986/table/sb191.t4/

I was surprised since I was able to identify patients having ICD9 codes related to Cannabis use in the MIMIC-III data set but not in eICU. I was able to find patients with ICD9 code 968.5 corresponding to 'Poisoning by cocaine.'

@christinium Thanks for the suggestion to search in the social history portion. Also, I agree with you those patients won't be billed even if Cannabis use was documented.

Apologies for posting my query in the wrong section.

@christinium
Copy link

christinium commented Feb 20, 2018 via email

@jraffa
Copy link
Contributor

jraffa commented Feb 20, 2018

Poisoning ~ overdose.

Again, I don't know what you plan to do in your study, but I wouldn't assume you are pulling out people with a 'substance abuse disorder', but rather those who had a documented overdose, or documented inpatient withdrawal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants