πΌHistogram by R base graph
Create a basic Histogram
# view data
data("iris")
# Create the histogram
hist(iris$Sepal.Width)
Change the label and color of a histogram:

Last updated