Farrokh Alemi, Ph.D. Revised by Akhil Anto

Slides:



Advertisements
Similar presentations
Database management system (DBMS)  a DBMS allows users and other software to store and retrieve data in a structured way  controls the organization,
Advertisements

Tutorial on Tukey Charts Farrokh Alemi, Ph.D. Sunday, 11/25/2007.
Tutorial on Risk Adjusted P-chart Farrokh Alemi, Ph.D.
 To provide you with an overview of the aspects that make up a relational database.  This includes: › Tables › Records › Fields › Data types › Keys.
ACCESS PART 2. Objectives Database Tables Table Parts Key Field Query and Reports Import from Excel Link to Excel.
Decision Trees Farrokh Alemi, Ph.D.. Coming Up How to construct a decision tree? –Components of a tree –Interviewing decision makers How to analyze a.
Table design screen Field name Data type Field size Other properties.
Concepts of Database Management, 4th Edition, Pratt & Adamski
Some Introductory Programming 1. Structured Query Language - used for queries. - a standard database product. 2. Visual Basic for Applications - use of.
Farrokh Alemi Ph.D. Defining Probability. Element Event Definition.
XmR Chart Farrokh Alemi, Ph.D.. Purpose of Control Chart  Real or random.  Tell a story of changes in outcomes of the process.
Descriptive Statistics, Part Two Farrokh Alemi, Ph.D. Kashif Haqqi, M.D.
PAIRED TEST Farrokh Alemi Ph.D.. Framework for Hypothesis Testing.
Go to Index Analysis of Means Farrokh Alemi, Ph.D. Kashif Haqqi M.D.
Introduction to Control Charts: XmR Chart
VARIANCE & STANDARD DEVIATION By Farrokh Alemi, Ph.D. This lecture is organized by Dr. Alemi and narrated by Yara Alemi. The lecture is based on the OpenIntro.
Example 3.4 Interpretation of the Standard Deviation: Rules of Thumb.
Mass s Tailored to Individuals Farrokh Alemi, Ph.D.
HYPOTHESIS TESTING FRAMEWORK Farrokh Alemi Ph.D..
0 Calculation of Return on Investments Farrokh Alemi, Ph.D.
Tutorial Revision: Vlookup, Pivot Table 1. Text Functions 2. Data Input Forms 3. Descriptive statistics 4. Histogram 5. What-If-Analysis.
INFERENCE Farrokh Alemi Ph.D.. Point Estimates Point Estimates Vary.
Time To Missed Exercise Farrokh Alemi, Ph.D.. Why do it? You need to distinguish between random days of missed exercise from real changes in underlying.
Measuring Impact of a Cause Farrokh Alemi Ph.D.. Definition.
Risk Adjusted X-bar Chart Farrokh Alemi, Ph.D. Based on Work of Eric Eisenstein and Charles Bethea, The use of patient mix-adjusted control charts to compare.
Episodes of Illness Farrokh Alemi, PhD
Random Variables and Probability Distribution (2)
Assistant Professor of Public Policy
Rate of 30-day hospital readmissions per 1,000 Medicare beneficiaries
Hierarchy of Data in a Database
Design a Relational Database Identify Database Purpose
Calculation of Present Value
Database Management  .
DATABASE SQL= Structure Query Language مبادئ قواعد بيانات
Monitoring Business Processes Control Charts in Business Objects
CALCULATING THE ACCOUNTS RECEIVABLE TURNOVER RATIO
Normal Distribution Farrokh Alemi Ph.D.
Variable Control Charts
DATABASE: INTERMEDIATE
عمل الطالبة : هايدى محمد عبد المنعم حسين
Has Payment, for AMI, to above National Average Hospitals, Increased?
Merge Data & Calculate Average
P-Chart Farrokh Alemi, Ph.D..
GROUP BY & Subset Data Analysis
What Are Databases? Organized by Dr. Farrokh Alemi PhD
Smart Water Fund Products
Farrokh Alemi, PhD Sunday, January 29, 2017
Related Graduate Courses Farrokh Alemi, Ph.D.
SELECT & FROM Commands Farrokh Alemi, PhD
Comparison of Rates Question 1
Using Ordinary Regression for Logit Transformed Data
Has Rate of Hospitals Exceeding National Payment for AMI Changed?
Comparing two Rates Farrokh Alemi Ph.D.
Has Rate of Changed for Southeast Alabama Medical Center?
Expectation And Variance of Random Variables
Dead Patients Visiting
Convert from Variable Character to Float
Causal Control Chart Farrokh Alemi, Ph.D..
Benchmarking Clinicians using Data Balancing
Analysis of Observed & Expected Infections
Excel Formulas Made Easy
P-Chart Farrokh Alemi, Ph.D. This lecture was organized by Dr. Alemi.
Research Project Mean vulnerability to drought 1990–2005 for wheat production. Vulnerability to drought is low (high) when crop failures are small (big)
BUS2206 Access Lab Queries Second Term,
Expectation Farrokh Alemi Ph.D.
Expectation And Variance of Random Variables
Benchmarking Clinicians using Data Balancing
Exponential Distribution Ends Up Normal
Categorical Data By Farrokh Alemi, Ph.D.
Tukey Control Chart Farrokh Alemi, Ph.D.
Presentation transcript:

Farrokh Alemi, Ph.D. Revised by Akhil Anto Has There Been a Change in Rate of Hospitals Exceeding National Payment for AMI? Farrokh Alemi, Ph.D. Revised by Akhil Anto

Download, Unzip, Rename Data To H-YYYY-MM

Merge into Access in Order of Date 1 2 4 3

Note Change in File Names From 2015 01 database From 2015 04 Only 3 Years Show Change in Data From 2015 05 From 2015 07 database From 2015 10 From 2015 12 From 2016 05 From 2016 08 From 2016 11 database

Ignore Tables with Same Time Periods Only 3 unique time periods in 9 tables: 2010-2013 in HQI_HOSP_AMI_Payment 2011-2014 in HQI_HOSP_Payment 2012-2015 in HQI_HOSP_PaymentAndValueOfCare

Field Names Change in Different Files Prob2010-2013: CAST(SUM(PATINDEX('%Greater%',[Compared to National]))as FLOAT) / COUNT([Compared to National]) Prob2011-2014: CAST(SUM(PATINDEX('%Greater%',[Category]))as FLOAT)/COUNT([Category]) Prob2012-2015: CAST(SUM(PATINDEX('%Greater%',[Payment Category]))as FLOAT)/COUNT([Payment Category])

2010-2013 from HQI_HOSP_AMI_Payment SELECT COUNT([Compared to National]) AS [Hospitals 2010-2013] , CAST(SUM(PATINDEX('%Greater%',[Compared to National]))as FLOAT) / COUNT([Compared to National]) AS [Prob] , [Measure Start Date] , [Measure End Date] FROM [dbo].[HQI_HOSP_AMI_Payment_2010_2013] WHERE Denominator!= 'Not Available' AND [Measure ID]='PAYM_30_AMI' GROUP BY [Measure Start Date],[Measure End Date]

2011-2014 SELECT COUNT(Category) AS [Hospitals 2011-2014] , CAST(SUM(PATINDEX('%Greater%',[Category]))as FLOAT)/COUNT([Category]) AS [Prob] , [Measure Start Date] , [Measure End Date] FROM [dbo].[HQI_HOSP_Payment_2011_2014] WHERE Denominator != 'Not Available' AND [Measure ID]='PAYM_30_AMI'

2012-2015 SELECT COUNT([Payment Category]) AS [Hospitals 2012-2015] ,CAST(SUM(patindex('%Greater%',[Payment Category]))as FLOAT)/COUNT([Payment Category]) AS [Prob] , [Measure Start Date] , [Measure End Date] FROM [dbo].[HQI_HOSP_PaymentAndValueOfCare_2012_2015] WHERE Denominator != 'Not Available' AND [Payment measure ID]='PAYM_30_AMI' GROUP BY [Measure Start Date], [Measure End Date];

Query Results

Calculate Control Limits Time Period 2010-2013 2011-2014 2012-2015 Number of Hospitals 2429 2369 2338 Observed Probability 0.157 0.154 0.109 Standard Deviation 0.007 Upper Limit 0.161 0.162 Lower Limit 0.119 Grand Average Rate 0.140   Average Rate =SUMPRODUCT(Number Hospitals, Observed)/SUM(Observed) Standard Deviation =SQRT((Average Rate*(1-Average Rate))/# of Hospitals) Upper Limit =Average Rate + 3 * Standard Deviation Lower Limit =Average Rate - 3 * Standard Deviation

Fewer Hospitals Exceeded Average National 30-day AMI Payments.