plot.predicted {sits}R Documentation

Plot time series predictions

Description

Given a sits tibble with a set of predictions, plot them

Usage

## S3 method for class 'predicted'
plot(x, y, ..., bands = "NDVI", palette = "Harmonic")

Arguments

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)

Value

The plot itself.

Author(s)

Gilberto Camara, gilberto.camara@inpe.br

Examples

## 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)


[Package sits version 0.16.2 Index]