Guest User

Untitled

a guest
Jun 26th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. best <- function(state, outcome) {
  2. ## Read outcome data
  3. ## Check that state and outcome are valid
  4. ## Return hospital name in that state with lowest 30-day death
  5. ## rate
  6.  
  7. source("sortHospitalsByOutcome.R")
  8. head(sortHospitalsByOutcome(state, outcome), 1)
  9. }
Add Comment
Please, Sign In to add comment