plot.predicted {sits}R Documentation

Generic interface for ploting 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")

Arguments

x

object of class "predicted"

y

ignored

...

further specifications for plot.

bands

bands used for visualisation

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.14.0 Index]