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 ascending order.
Syntax
asc()
Returns
Column
Examples
from pyspark.sql import Row
df = spark.createDataFrame([('Tom', 80), ('Alice', None)], ["name", "height"])
df.select(df.name).orderBy(df.name.asc()).collect()
# [Row(name='Alice'), Row(name='Tom')]