Table of Contents

Spark DataSet - Column

About

A dataset column

Management

Select

val ageCol = people("age")
Column ageCol = people.col("age"); 

DSL Operation

Addition

The following creates a new column that increases everybody's age by 10.

people("age") + 10 
people.col("age").plus(10); 

More

See Spark DataSet - DSL Operations

Documentation / Reference