forked from Rabia-Shafiq/R_Programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrankall.R
37 lines (32 loc) · 1.84 KB
/
rankall.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
rankall <- function(outcome, num = "best") {
## Reads outcome data
file_data <- read.csv("outcome-of-care-measures.csv", sep = ",")
## Checks that state and outcome are valid
valid_states <- c("AK", "AL", "AR", "AZ", "CA", "CO", "CT", "DE", "FL", "GA", "HI", "IA", "ID", "IL", "IN", "KS", "KY", "LA", "MA", "MD", "ME", "MI", "MN", "MO", "MS", "MT", "NC", "ND", "NE", "NH", "NJ", "NM", "NV", "NY", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VA", "VT", "WA", "WI", "WV", "WY")
valid_outcomes <- c("heart attack", "heart failure", "pneumonia")
if (!is.element(outcome, valid_outcomes)) stop("invalid outcome")
header_name <- NULL
if (outcome == "heart attack") header_name <- "Hospital.30.Day.Death..Mortality..Rates.from.Heart.Attack"
else if (outcome == "heart failure") header_name <- "Hospital.30.Day.Death..Mortality..Rates.from.Heart.Failure"
else header_name <- "Hospital.30.Day.Death..Mortality..Rates.from.Pneumonia"
hosps <- c()
states <- c()
## For each state, finds the hospital of the given rank
for (state in valid_states) {
ranked_hosp <- c()
data <- file_data[file_data$State == state,]
sorted_data <- data[order(as.numeric(as.character(data[,header_name])), as.character(data[,"Hospital.Name"])),]
sorted_data <- sorted_data[!sorted_data[,header_name] == "Not Available",]
if (num == "best") {
ranked_hosp <- best(state, outcome)
} else if (num == "worst") {
ranked_hosp <- as.character(tail(sorted_data[,"Hospital.Name"], n = 1))
} else {
ranked_hosp <- as.character(sorted_data[,"Hospital.Name"][num])
}
hosps <- c(hosps, ranked_hosp)
}
result <- data.frame(hosps, valid_states)
colnames(result) <- c("hospital", "state")
return(result)
}