This post describes how to build a basic barplot with R, without any packages, using the barplot()
function.
In R, a barplot is computed using the barplot()
function.
Here is the most basic example you can do. The input data is a data frame with 2 columns. value
is used for bar height, name
is used as category label.
Note: read more to