Class: DataFrame

eclairjs/sql.DataFrame

A distributed collection of data organized into named columns. A DataFrame is equivalent to a relational table in Spark SQL.

Constructor

new DataFrame()

Source:
Examples
var people = sqlContext.read.parquet("...")
// Once created, it can be manipulated using the various domain-specific-language (DSL) functions defined in:
// DataFrame (this class), Column, and functions.
// To select a column from the data frame:
var ageCol = people("age")