0% found this document useful (0 votes)
173 views6 pages

Sample Exam 2

The document contains an exam for a course on health administrative data with 13 multiple choice and coding questions. It asks about diagnostic accuracy statistics, developing validation cohorts, identifying frequent lab tests, calculating diagnostic validity measures, comparing lengths of stay by hospital service, identifying congestive heart failure diagnoses, counting repeat admissions, and listing advantages and disadvantages of using administrative data. The bonus questions ask about political and TV show predictions.

Uploaded by

JchitP
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
173 views6 pages

Sample Exam 2

The document contains an exam for a course on health administrative data with 13 multiple choice and coding questions. It asks about diagnostic accuracy statistics, developing validation cohorts, identifying frequent lab tests, calculating diagnostic validity measures, comparing lengths of stay by hospital service, identifying congestive heart failure diagnoses, counting repeat admissions, and listing advantages and disadvantages of using administrative data. The bonus questions ask about political and TV show predictions.

Uploaded by

JchitP
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

/*********************************************************************

EPI5143 Final Exam


April 13, 2016
2 hours

For each question, please answer in the space indicated. For coding
questions, please use the datasets provided and include the complete
SAS code to answer the question as well as the answer itself.
Read the entire exam before beginning, and above all, REMAIN CALM.

1. (10 marks) When validating an algorithm to identify patients with a


rare disease within health administrative data, which diagnostic
accuracy statistic is the MOST important to ensure a 'clean' sample of
patients without the presence of non-diseased patients?

a. Sensitivity
b. Positive predictive value (PPV)
c. Negative predictive value (NPV)
d. Kappa
e. Likelihood ratio
********************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/

/*******************************************************************
2. (10 marks) During the validation of codes/algorithms used to
identify people with a disease in health administrative data, what are
important considerations for how you would develop true positive and
negative reference cohorts to provide an accurate estimation of
predictive values (PPV and NPV)?
********************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/
/*********************************************************************
3. (10 marks)
Which lab test code is the most frequent for admissions in the year
2000?

Details:

a) Lab tests are rows in NSERVICE in which SVCTABLECD = "Lb".


b) Date of lab tests are stored in NSERVICE.SVCPERFORMEDDTM.
c) Lab test codes stored in NSERVICE.SVCSTMWID.
*******************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/

/*******************************************************************
4. (10 marks)
In what proportion of admissions in the year 2000 was the lab test
identified in question 3 done at least once?

Details:
a) All admissions are in NHRABSTRACTS.
b) Linking variables: NHRABSTRACTS.HRAENCWID = NSERVICE.SVCENCWID
*******************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/
/*********************************************************************
5. (10 marks)
You are the CEO of the local hospital. The chief of the division of
respirology tells you that a recent analysis found that less than 1 in
3 patients with primary pulmonary hypertension are treated with a
'life-saving' drug. The analysis identified these patients in
NRHABSTRACTS using a code with a sensitivity and specificity of 90%.
You estimate that (at most) 0.1% of all admissions to your hospital
have primary pulmonary hypertension. The respirology chief recommends
that the hospital pay for a full-time nurse who would ensure that all
primary pulmonary hypertension patients admitted to your hospital get
the proper treatment.

a) Explain why you would or would not agree with her


recommendation.

b) Subsequently a better coding algorithm was identified in these


patients that was shown to have a sensitivity of 92% and
specificity of 99.9% and the Chief of Respirology advocates even
more strongly for her original recommendation. Does this change
your agreement with her recommendation? Explain why or why not.

/**** TYPE ANSWER HERE**********************************************

********************************************************************/

5. (20 marks)
In a recent paper, diagnostic codes from a National Patient Registry
were used to identify cases of celiac disease. They cited a previous
study in which these diagnostic codes were validated for a
jurisdiction within the same country, and they found that 80 out of 90
children coded with celiac disease actually had the condition, while
70 out of 5150 children who were not coded with celiac disease truly
had the condition.

a) Calculate 1)sensitivity, 2)specificity, 3)positive predictive


value and 4)positive likelihood ratio for the study.

b) Assuming that 1% of all children in this national registry truly


have celiac disease, what is the probability that a child coded
with celiac disease in this study truly has the condition?
Hint: Calculate the post-test probability of disease.

*********************************************************************/

/**** TYPE ANSWER HERE**********************************************


********************************************************************/

/*******************************************************************
7. (10 marks)
Which hospital service has the LONGEST average length of stay? Which
hospital service had the SHORTEST average length of stay?

Details:
a) Length of stay is stored in NHRABSTRACTS.HRALOS.
c) Service stored in NHRABSTRACTS.HRAPATSVC.
e) Exclude all services with less than 10 admissions.
*********************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/

/*******************************************************************
8. (10 marks)
The NHRDIAGNOSIS.HDGCD value of 428.X (where X can be any number)
indicates congestive heart failure. Determine what proportion of
admissions in 1999 (admission date NHRABSTRACTS.HRAADMDTM)included a
diagnosis of heart failure.
*******************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/

/*******************************************************************
9. (10 marks)
How many people had multiple admissions in 1999?

a) NHRABSTRACTS.HRAENCWID is the unique admission identifier.


b) NHRABSTRACTS.HRAADMDTM identifies the admission date.
c) NENCOUNTER.ENCPATWID identifies unique patients.
*******************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/
/********************************************************************
10. (10 marks)
What is the lowest and highest recorded serum sodium?

Details:
a) Sodium indicated by NSERVICE.SVCSTMWID=5784.
b) Result of sodium test located in NLABSERVICE.LABSINGLERESULT.
*******************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/

/*******************************************************************
11. (10 marks) Convert your answer to question 9 into a macro called
“labrange”, so that you can specify any STMWID and return the lowest
and highest recorded lab value for that lab test.
*******************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/

data _null_;
set old;
if _n_=1 then call symputx('variable',column_var);
run;

/*******************************************************
12. (10 marks)
a) In a data step, create a variable called x. Assign a value of 5 to
this variable. Finally, within this data step, create a global macro
variable called xvalue that takes on the value of the data step
variable x.
b) If your solution to a) creates a temporary or permanent dataset,
how would you write this data step so that it completes the tasks in
a) but does not actually create a temporary or permanent dataset after
being run?
*******************************************************/
data _null_;

/**** TYPE ANSWER HERE**********************************************

********************************************************************/
/******************************************************************

13. (10 marks) List at least 2 advantages and 2 disadvantages of


using health administrative data for research.
*******************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/

/*******************************************************************
Bonus Questions:
1) Do you believe that Donald Trump will be the Republican
Presidential Nominee in the next US election?

2) Do you believe Jon Snow is truly dead, or will he be brought


back to life in Game of Thrones Season 6?

*******************************************************************/

/**** TYPE ANSWER HERE**********************************************

********************************************************************/

/**** HAVE A GREAT SPRING AND SUMMER!!*********************************/

You might also like