| plot.uncertainty_cube {sits} | R Documentation |
plots a probability cube using stars
## S3 method for class 'uncertainty_cube' plot(x, y, ..., tile = 1, n_breaks = 11, breaks = "pretty", palette = "Blues")
x |
object of class "probs_image" |
y |
ignored |
... |
further specifications for plot. |
tile |
tile number to be plotted |
n_breaks |
number of breaks to plot |
breaks |
type of class intervals |
palette |
hcl palette used for visualisation |
The plot itself.
Possible class intervals
"sd": intervals based on the average and standard deviation.
"equal": divides the range of the variable into n parts.
"pretty": number of breaks likely to be legible.
"quantile": quantile breaks
"kmeans" : uses kmeans to generate the breaks.
"hclust" : breaks defined by hierarchical clustering.
"bclust" : breaks defined by bagged clustering.
"fisher" : method proposed by Fischer (1958).
"jenks" : method proposed by Jenks.
"dpih" : based on the bin width of a histogram.
"headtails" : algorithm proposed by Bin Jiang (2013)
Gilberto Camara, gilberto.camara@inpe.br