View source: R/class-forecast-point.R
as_forecast_point | R Documentation |
forecast
object for point forecastsWhen converting a forecast_quantile
object into a forecast_point
object,
the 0.5 quantile is extracted and returned as the point forecast.
as_forecast_point(data, ...)
## Default S3 method:
as_forecast_point(
data,
forecast_unit = NULL,
observed = NULL,
predicted = NULL,
...
)
## S3 method for class 'forecast_quantile'
as_forecast_point(data, ...)
data |
A data.frame (or similar) with predicted and observed values. See the details section of for additional information on the required input format. |
... |
Unused |
forecast_unit |
(optional) Name of the columns in |
observed |
(optional) Name of the column in |
predicted |
(optional) Name of the column in |
A forecast
object of class forecast_point
The input needs to be a data.frame or similar with the following columns:
observed
: Column of type numeric
with observed values.
predicted
: Column of type numeric
with predicted values.
For convenience, we recommend an additional column model
holding the name
of the forecaster or model that produced a prediction, but this is not
strictly necessary.
See the example_point data set for an example.
Other functions to create forecast objects:
as_forecast_binary()
,
as_forecast_nominal()
,
as_forecast_ordinal()
,
as_forecast_quantile()
,
as_forecast_sample()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.