| plot.predicted {sits} | R Documentation |
Given a sits tibble with a set of predictions, plot them
## S3 method for class 'predicted' plot(x, y, ..., bands = "NDVI", palette = "Harmonic")
x |
object of class "predicted" |
y |
ignored |
... |
further specifications for plot. |
bands |
bands used for visualisation |
palette |
hcl palette used for visualisation (in case classes are not in the default sits palette) |
The plot itself.
Gilberto Camara, gilberto.camara@inpe.br
## Not run: # Retrieve the set of samples for Mato Grosso region (provided by EMBRAPA) samples_mt_ndvi <- sits_select(samples_modis_4bands, bands = "NDVI") # classify the point model_svm <- sits_train(samples_mt_ndvi, ml_method = sits_svm()) point_ndvi <- sits_select(point_mt_6bands, bands = "NDVI") class_ndvi.tb <- sits_classify(point_ndvi, model_svm) # plot the classification plot(class_ndvi.tb) ## End(Not run)