Barplot
A barplot compares numerical values across categories. The length or height of each bar represents the value associated with that category.
Explore the detailed barplot guide →
values <- c(A = 18, B = 27, C = 22, D = 35, E = 29)
barplot(values, col = "#2563eb", border = NA,
ylab = "Value", main = "Values by category")
















