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

XPSDataStats

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

The data statistics of a series of values that share the same DataType.

interface XPSDataStats {
arrayStats?: XPSArrayStats;
categoryStats?: XPSCategoryStats;
distinctValueCount?: bigint;
float64Stats?: XPSFloat64Stats;
nullValueCount?: bigint;
stringStats?: XPSStringStats;
structStats?: XPSStructStats;
timestampStats?: XPSTimestampStats;
validValueCount?: bigint;
}

§Properties

§
arrayStats?: XPSArrayStats
[src]

The statistics for ARRAY DataType.

§
categoryStats?: XPSCategoryStats
[src]

The statistics for CATEGORY DataType.

§
distinctValueCount?: bigint
[src]

The number of distinct values.

§
float64Stats?: XPSFloat64Stats
[src]

The statistics for FLOAT64 DataType.

§
nullValueCount?: bigint
[src]

The number of values that are null.

§
stringStats?: XPSStringStats
[src]

The statistics for STRING DataType.

§
structStats?: XPSStructStats
[src]

The statistics for STRUCT DataType.

§
timestampStats?: XPSTimestampStats
[src]

The statistics for TIMESTAMP DataType.

§
validValueCount?: bigint
[src]

The number of values that are valid.