For DataFrames, this option is only applied when sorting on a single column or label. code example
Example 1: dataframe sort by column
sorted = df.sort_values('column-to-sort-on', ascending=False)
#or
df.sort_values('name', inplace=True)
Example 2: sort columns dataframe
df = df.reindex(sorted(df.columns), axis=1)