We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea4a0e3 commit 3ab9a6cCopy full SHA for 3ab9a6c
python/datafusion/dataframe.py
@@ -1167,9 +1167,9 @@ def distinct_on(
1167
def sort_by(self, *exprs: Expr | str) -> DataFrame:
1168
"""Sort the DataFrame by column expressions in ascending order.
1169
1170
- This is a convenience method that sorts all columns in ascending order
1171
- with nulls last. For more control over sort direction and null ordering,
1172
- use :py:meth:`sort` instead.
+ This is a convenience method that sorts the DataFrame by the given
+ expressions in ascending order with nulls last. For more control over
+ sort direction and null ordering, use :py:meth:`sort` instead.
1173
1174
Args:
1175
exprs: Expressions or column names to sort by.
0 commit comments