Select Expr in Spark Dataframe

Select and Expr are one of the most used functions in the Spark dataframe. In this blog, we will learn different things that we can do with select and expr functions.

Selecting Columns from Dataframe

This is one of the most used functions for the data frame and we can use Select with “expr” to do this. Before using “expr” function we need to import it.

Operations on Column Data

A more interesting use case for “expr” is to perform different operations on column data. We can use it to get length or column, extract data, or anything which we can do it SQL.

In the above code, we are printing value in the column filed is greater than 10 or not. You can see that our column name is not very user friendly. Just like in SQL, we can give usable column names.

Using Alias with Expr

We can use Alias function to give user friendly names to columns.

Selecting All columns with expr

We might need to select other columns from the dataframe along with the newly created expression column. This is very easy. We can give a comma-separated list of columns or use “*” to list all columns from the data frame.

Selecting All columns with Expr
Selecting All Columns from Dataframe with Expr

Renaming Columns with Expr and Alias

We can use Expr to rename columns in data frame. This will actually create new columns instead of renaming old one.

SelectExpr – shorthand for select and expr

Select and Expr is so much widely used while working with Spark dataframe, that the Spark team has given shorthand to use it. We can use selectExpr function.

I hope you found this useful. See you in next blog.

Similar Posts

Leave a Reply

Your email address will not be published.