list
format to a quantile data.frame
R/quantile.R
quantile_data_frame_from_forecast_data.Rd
Converts forecast data from Zoltar's native list
format to a quantile data.frame
quantile_data_frame_from_forecast_data(forecast_data)
Forecast data as a list
in the Zoltar standard format
A data.frame
from forecast_data that's the same as data_frame_from_forecast_data()
does except
only includes point and quantile rows, and with this header: 'location', 'target', 'type', 'quantile',
'value', i.e., 'unit' -> 'location' and 'class' -> 'type'
if (FALSE) {
forecast_data <- jsonlite::read_json("docs-predictions.json")
data_frame <- quantile_data_frame_from_forecast_data(forecast_data)
}