
Last chance! 50% off unlimited learning
Sale ends in
Create visualizations of Functional Time Series (funts) data, supporting both one-dimensional and two-dimensional domains.
# S3 method for funts
plot(
x,
npts = 100,
obs = 1,
xlab = NULL,
ylab = NULL,
main = NULL,
type = "l",
lty = 1,
...
)
An object of class funts
.
Number of grid points for the plots.
Observation number (for two-dimensional domains).
X-axis label.
Y-axis label.
Main title for the plot.
Type of plot ("l" for line, "p" for points, etc.).
Line type (1 for solid, 2 for dashed, etc.).
Additional graphical parameters passed to plotting functions.
This function enables the creation of visualizations for Functional Time Series (funts) data. It supports both one-dimensional and two-dimensional domains.
For one-dimensional domains, line plots are used, while for two-dimensional domains, image plots are employed.
funts
, Callcenter
, Montana
# Example with one-dimensional domain
data("Callcenter")
plot(Callcenter, lwd = 2, col = "deepskyblue4", main = "Call Center Data")
# Example with two-dimensional domain
data("Montana")
plot(Montana, obs = 2, main = c("Temperature Curves", "NDVI Images,"))
Run the code above in your browser using DataLab