Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

If you have decided to use RStudio: Model 1 Run a logit model and use being a member of network and find out its impact

If you have decided to use RStudio:
Model 1
Run a logit model and use being a member of network and find out its impact on hospital ownership and hospital beds? (Model 1)
Model 2
Now, include hospital income and report the Coeff.? (Model 2)
Model 3
Now, include the ratio of ratio-Medicare-discharge and ratio-Medicaid-discharge in your model? And keep all variables you used for models 1,2 & 3 and discuss your findings? Do you recommend keeping membership for a hospital? Why or why not? (Model 3)
Based on your finding please recommend 3 policies to improve hospital performance in FP, NFP hospitals, please make sure to use the final model for your recommendation. # 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

Step: 3

blur-text-image

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

How flying airoplane?

Answered: 1 week ago