Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Forecast

import type { Forecast } from "https://aws-api.deno.dev/v0.4/services/forecastqueryservice.ts?docs=full";

Provides information about a forecast. Returned as part of the "QueryForecast" response.

interface Forecast {
Predictions?: {
[key: string]: DataPoint[] | null | undefined;
}
| null;
}

§Properties

§
Predictions?: {
[key: string]: DataPoint[] | null | undefined;
}
| null
[src]

The forecast.

The string of the string-to-array map is one of the following values:

  • p10
  • p50
  • p90

The default setting is ["0.1", "0.5", "0.9"]. Use the optional ForecastTypes parameter of the CreateForecast operation to change the values. The values will vary depending on how this is set, with a minimum of 1 and a maximum of 5.