terra (version 1.7-71)

barplot: Bar plot of a SpatRaster

Description

Create a barplot of the values of a the first layer of a SpatRaster. For large datasets a regular sample with a size of approximately maxcells is used.

Usage

# S4 method for SpatRaster
barplot(height, maxcell=1000000, digits=0, breaks=NULL, col, ...)

Value

A numeric vector (or matrix, when beside = TRUE) of the coordinates of the bar midpoints, useful for adding to the graph. See barplot

Arguments

height

SpatRaster

maxcell

integer. To regularly subsample very large datasets

digits

integer used to determine how to round the values before tabulating. Set to NULL or to a large number if you do not want any rounding

breaks

breaks used to group the data as in cut

col

a color generating function such as rainbow (the default), or a vector of colors

...

additional arguments for plotting as in barplot

See Also

Examples

Run this code
f <- system.file("ex/elev.tif", package="terra")
r <- rast(f)
barplot(r, digits=-1, las=2, ylab="Frequency")

op <- par(no.readonly = TRUE)
par(mai = c(1, 2, .5, .5))
barplot(r, breaks=10, col=c("red", "blue"), horiz=TRUE, digits=NULL, las=1)
par(op)

Run the code above in your browser using DataLab