The control file tells DRGFilt how to parse the incoming data records to pick out the data elements needed to assign a DRG:
- patient age
- patient sex
- patient discharge status
- list of diagnoses
- list of procedures
- Grouper Return Code (GRC) -- what, if anything, went wrong
- Major Diagnostic Category (MDC)
- Diagnosis Related Group (DRG)
Our first step along the moderization path is Specifically, this is the control file we are using to validate the new DRGFilt against the CMS test data set:
; control file for new DRG filt
[drgfilt]
format = fixed
; fixed-width input variables: name = length@offset
age = 3@0
sex = 1@3
ds = 2@4
dxl=8 ; dx length does not require an offset
poa= 7
dx = 200@23
sgl=7@0 ; pr length, offset is optional & ignored
surg= 175@223
exmp = 1@6
; -----
; these are already present from the CMS grouper:
; you could overwrite the incomin values if you wanted to
; drg = 3@603
; mdc = 2@600
; rc = 2@598
; -----
; these are written out by DRGFilt
rc = 2@1760
mdc = 2@1762
drg = 3@1764
; eof
We hope to roll out the long-awaited CSV support very soon.
No comments:
Post a Comment