Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface DataFrame

Represents a data frame. A data frame is always stored in the data store and represented by the url. It also includes eagerly evaluated (always available) preview and lazily evaluated full data. Those are represented as arrays of JavaScript records.

Hierarchy

Index

Properties

Properties

data

data: AsyncLazy<any[]>

Lazy value that can be asynchronously evaluated to obtain the full data frame as array of records

kind

kind: "dataframe"

A tag that is used for pattern matching on KnownValue instances.

preview

preview: any[]

A smaller preview of the data (e.g. first 100 rows), stored as array of records

url

url: string

URL of the data frame as stored in a data store

Generated using TypeDoc