care_home_incidents | R Documentation |
a NHS patient safety incidents dataset: https://www.england.nhs.uk/patient-safety/report-patient-safety-incident/ dataset that has been synthetically generated against real data
care_home_incidents
A data frame with 1216 rows and 12 variables:
a binary indicator to specify whether a certain care home is failing
aggregation of incidents indicating weight loss in patient
medication missed aggregaation
Recorded number of patient falls
Number of patient choking incidents
unexpected deaths in the care home
Number of bruising incidents in the care home
Absconding from the care home setting
Abuse conducted by one care home resident against another
Incidents of resident abuse by staff
Incidents of residents abusing staff
Unexplained wounds against staff
Collected by Gary Hutson hutsons-hacks@outlook.com, Jan-2022
library(dplyr) data(care_home_incidents) # Convert diabetes data to factor' ch_incs <- care_home_incidents %>% mutate(CareHomeFail = as.factor(CareHomeFail)) ch_incs %>% glimpse() # Check factor factor(ch_incs$CareHomeFail)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.