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

ColumnImportance

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

A structure containing the column name and column importance score for a column.

Column importance helps you understand how columns contribute to your model, by identifying which columns in your records are more important than others.

interface ColumnImportance {
ColumnName?: string | null;
Importance?: number | null;
}

§Properties

§
ColumnName?: string | null
[src]

The name of a column.

§
Importance?: number | null
[src]

The column importance score for the column, as a decimal.