Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sort the column in descending order with null values appearing last.
Syntax
desc_nulls_last()
Returns
Column
Examples
from pyspark.sql import Row
df = spark.createDataFrame(
[('Tom', 80), (None, 60), ('Alice', None)], ["name", "height"])
df.select(df.name).orderBy(df.name.desc_nulls_last()).collect()
# [Row(name='Tom'), Row(name='Alice'), Row(name=None)]