diabetes_data | R Documentation |
Diabetes datasets
diabetes_data
A data frame with 520 rows and 17 variables:
age of the patient presenting with diabetes
gender of the patient with diabetes
if the patient has a history of excessive urination
abnormal thurst, accompanied by the excessive intake of water or fluid
Sudden weight loss that has recently occured
Fatigue or weakness
excessive or extreme hunger
patient has thrush fungus on or near their genital region
history of blurred vision
skin itching
general irritability and mood issues
delayed healing of wounds
partial psoriasis on the body
stiffness of the muscles
scalp alopecia and hair shedding
Classified as obese
Class label to indicate whether the patient is diabetic or not
Collected by Gary Hutson hutsons-hacks@outlook.com, Dec-2021
library(dplyr) data(diabetes_data) # Convert diabetes data to factor' diabetes_data <- diabetes_data %>% glimpse() %>% mutate(DiabeticClass = as.factor(DiabeticClass)) is.factor(diabetes_data$DiabeticClass)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.