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

XPSRegressionMetricsEntry

import type { XPSRegressionMetricsEntry } from "https://googleapis.deno.dev/v1/language:v2.ts";

A pair of actual & observed values for the model being evaluated.

interface XPSRegressionMetricsEntry {
predictedValue?: number;
trueValue?: number;
}

§Properties

§
predictedValue?: number
[src]

The observed value for a row in the dataset.

§
trueValue?: number
[src]

The actual target value for a row in the dataset.