Lab3

Viet Ha

2025-01-24

Question #1: What is the most popular fuel type in this data set?

ggplot(mpg) +
  geom_bar(aes(x = fl, fill = fl))

Answer: According to the bar plot, the most popular fuel type is regular

Question 3