car_maintenance | R Documentation |
A dataset that contains information about car usage and technical data for predicitve maintenance
data(car_maintenance)
A data.frame with 32 rows and 6 variables:
Number of warnings in the log file that are related to the part id 1023
Number of warnings in the log file that are related to the part id 99
Number of warnings in the log file that are related to the part id 02
Oil volume at last checkās day
Resultofthelast checkup (unacc: unaccepted, acc: accepted, good: good, vgood: very good)
Dummy indicating if the car had a follow-up check or not. 'yes' means that the first repair could not fix the issue and customer returned with the same problem.
data(car_maintenance)
library("ggplot2")
ggplot(car_maintenance, aes(factor(FOLLOW_UP))) +
geom_bar()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.