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

DoubleColumnStatisticsData

import type { DoubleColumnStatisticsData } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

Defines column statistics supported for floating-point number data columns.

interface DoubleColumnStatisticsData {
MaximumValue?: number | null;
MinimumValue?: number | null;
NumberOfDistinctValues: number;
NumberOfNulls: number;
}

§Properties

§
MaximumValue?: number | null
[src]

The highest value in the column.

§
MinimumValue?: number | null
[src]

The lowest value in the column.

§
NumberOfDistinctValues: number
[src]

The number of distinct values in a column.

§
NumberOfNulls: number
[src]

The number of null values in the column.