Questions tagged [icd]

ICD is the International Classification of Diseases, a numerical classification system

ICD is the International Classification of Diseases, a numerical classification system is the classification used to code health conditions and related information. The ICD is copyrighted by the World Health Organization (WHO), which owns and publishes the classification. The ICD has been revised periodically to incorporate changes in the medical field. The current version is ICD10, but ICD9 is still in use and ICD11 is in development.

38 questions
1
vote
4 answers

Looking for ICD10 API

Any body knows of a good ICD10 API to do diagnostic code lookups that can recommend. I am currently building a simple app to tag patients with medical condition and the idea is to have a lookup API where one can type asthma for example and get back…
ecorvo
  • 3,559
  • 4
  • 24
  • 35
1
vote
1 answer

How to generate 837 DAT file with ICD10 code in Biztalk?

My 'BizTalk' application 'convert' txt file to 'DAT(EDI 837 005010X222A1)' file format. 'Now change is Need to generate DAT file with ICD10 code' Question are How I generate DAT with like 'HI*ABK'? right now in Combined837Doc.map, 'BK' is…
Miki Shah
  • 815
  • 9
  • 20
1
vote
2 answers

messages polymorphism in c++

I am using the following design for sending message between 2 application. class InternalMessage { public: InternalMessage(unsigned int messageId, unsigned int messageSize, INTERNAL_MESSAGE_TYPE messageType) : messageId_(messageId),…
ransh
  • 1,589
  • 4
  • 30
  • 56
0
votes
1 answer

How can I use the MatchIt package from R to match control and case patients on age and multiple diagnosis codes (ICD10)?

I have case patients and am trying to match controls based of age (easy part) and ICD10 using the MatchIt package in R. My problem is that there are multiple ICD codes for a given patient. For example, a 20 year old case case patient may have 2 ICD…
0
votes
1 answer

R icd package - how to get ICD code explanation for large dataset with repeats

I have a dataset with ~ 4000 patients and a primary diagnosis given by ICD10 codes. Many of the diagnoses are repeated across patients. I found the "icd" R package. I'd like it to add a column describing (in words) what the diagnosis is. Note…
John Ryan
  • 343
  • 1
  • 9
0
votes
1 answer

ICD-10 code prediction from unstructured clinical text

Does anyone know of a prediction engine that produces ICD-10 diagnosis codes from unstructured clinical text? Preferably an API that I can work with. The use case I have in mind is to pull doctors' notes from electronic health records systems (EHR)…
kanikar
  • 1
  • 1
0
votes
1 answer

Scoring Comorbidities per patient using the Comorbidity Package in R

I am trying to score each patient in my data based using their ICD10 codes. library(dplyr) library(comorbidity) set.seed(1) x <- data.frame( pat_id = sample(100:999, size = 300, replace = TRUE), code = sample_diag(n = 300) ) I can successfully…
TheGoat
  • 2,587
  • 3
  • 25
  • 58
0
votes
1 answer

ERROR 79-322 Expecting a ) / ERROR 388-185: Expecting an arithmetic operator / ERROR 200-322: The symbol is not recognized and will be ignored

I am really frustrated. I just changed the code definition for certain comorbidities using the same format as the original NCI macro code. However, I got the following error. Could you please help me to identify the problem? I sincerely appreciate…
epiphd
  • 3
  • 1
0
votes
0 answers

claims data analysis:select participants based on given criteria

I have a little knowledge of SAS but I have no idea about the structure of claims data .I want to select participants for a cohort study based on the following criteria from three data sets: o Received a dementia diagnosis (ICD-9-CM: 290.0x -…
0
votes
0 answers

ICD10CM look up in python

I am attempting to write an ICD10 CM program look up using an ICD text file saved on my computer. I need to input the icd 10 code and have the program print a text description of the code. However, when I ran my code, the description doesn’t match…
Ella
  • 1
  • 1
0
votes
1 answer

How to make subgroups by prefixes from ICD data?

I have a large ICD-10 data and I would like to create subgroups and get a sum out of it. For example, I have 'JAL01, JAL20 and JAL21' and I would need a sum of all the codes starting with 'JAL'. How do I do that?
Elina
  • 23
  • 3
0
votes
1 answer

Replacing ontological codes in data file with meanings

I'm pretty novice in using R. I'm facing a problem that I used ontological codes in collecting my data (ICD-10, NCBITaxon and CHEBI). My data is in a long format: ID Disease Organism Antibiotic 1 654 N18.0 NCBITaxon:1280 …
0
votes
1 answer

Dictionary encoding in python

Hello guys i am new to python and coding. I want to group following medications(ICD10 coding) : A00 - B99 1 C00 - D49 2 D50 - D89 3 E00 - E89 4 I have created the dictionary for mapping which looks like : dict_ICD_10 =…
0
votes
1 answer

AutoML NL - Training model based on ICD10-CM - Amount of text required

We are currently working on integrating ICD10-CM for our medical company, to be used for patient diagnosis. ICD10-CM is a coding system for diagnoses. I tried to import ICD10-CM data in description-code pairs but obviously, it didn't work since…
0
votes
1 answer

Cleanest way to bin using Pandas.cut

The purpose of this post is discussion primarily, so even loose ideas or strings to pull would be appreciated. I'm trying to bin some data for analysis, and was wondering what is the cleanest way to bin my data using Pandas.cut. For some context,…
Brendan
  • 1,905
  • 2
  • 19
  • 25