❮ Graphs
❯
- barplot
Bar plot
examples/graphs/barplot.R
distances = c(11, 15, 7, 23, 9) barplot(distances) barplot(c(2, 3, 7, 1)) data <- rnorm(100) barplot(data)
examples/graphs/barplot_vector.R
barplot(c(2, 3, 7, 1)) data <- rnorm(100) barplot(data)