Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

If you have chosen to work with Excel, please run above three models and complete the following tables. Model 1 : Run a regression model

If you have chosen to work with Excel, please run above three models and complete the following tables.
Model 1: Run a regression model and use being a member of network and find out its impact on hospital cost? (Model 1) Model 2: For the 2nd model run a regression model and use being a member of network and find out its impact on hospital cost and hospital revenue? (Model 2) Model 3: For the 3rd model run a regression model and use being a member of network and find out its impact on ratio-Medicare-discharge and ratio-Medicaid-discharge.
Based on your finding please recommend 3 policies and discuss the impact of being on a network on hospital cost, hospital revenue and out its impact on ratio-Medicare-discharge and ratio-Medicaid-discharge. Do you recommend keeping membership for a hospital? Why or why not? # You can remove the # from the sink command to keep all log in txt.
# sink("C:/UMUC/week5exercise.txt")
# Step 1: Install package dplyr & load it
# install.packages('dplyr')
library(dplyr)
# Step 2: Read your data
# Pl change the location of file
hosp <- read.csv("C:/UMUC/HMGT400HOSPITAL.csv", header=T, sep =',')
#Step 3: See the variables' names
names (hosp)
#step 4 : generate benefit variable
hosp$benefit <-(hosp$total_hosp_revenue-hosp$total_hosp_cost)
hosp$medicare_discharge_ratio <-(hosp$total_hospital_medicare_discharg/hosp$total_hospital_discharges)*100
hosp$medicaid_discharge_ratio <-(hosp$total_hospital_medicaid_discharg/hosp$total_hospital_discharges)*100
#step 5 : generate own1 as a categorical variable
## Ownership
## 0) non-for-profit
## 1) for profit
## 2) Public
## 3) Other
own1<- factor(hosp$own, levels = c(0,1,2,3))
#step 6 : Run logit models
# Model 1
model1<- glm(system_member ~ own1+ hospital_beds,family=binomial(link='logit'),data=hosp)
summary(model1)
# Model 2
model2<- glm(system_member ~ own1+ hospital_beds + total_hosp_revenue,family=binomial(link='logit'),data=hosp)
summary(model2)
# Model 3
model3<- glm(system_member ~ own1+ hospital_beds + total_hosp_revenue + medicare_discharge_ratio + medicaid_discharge_ratio,family=binomial(link='logit'),data=hosp)
summary(model3)
# sink()
model1<- glm(system_member ~ hospital_beds,family=binomial(link='logit'),data=hosp)
summary(model1)
model2<- glm(system_member ~ hospital_beds + total_hosp_revenue,family=binomial(link='logit'),data=hosp)
summary(model2)
model3<- glm(system_member ~ hospital_beds + total_hosp_revenue + medicare_discharge_ratio + medicaid_discharge_ratio,family=binomial(link='logit'),data=hosp)
summary(model3)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

General Management Processes And Action

Authors: David A. Garvin

1st Edition

0072432411, 978-0072432411

More Books

Students also viewed these General Management questions

Question

=+what you can edit out yet still get the message across.

Answered: 1 week ago

Question

=+3. How could you extend the campaign creatively?

Answered: 1 week ago