Getting Started With Pandas Sort Methods

Learning pandas sort methods is a great way to start with or practice doing basic data analysis using Python. One of the great things about using pandas is that it can handle a large amount of data and offers highly performant data manipulation capabilities.

This is a portion of the complete course, which you can find here:
realpython.com/courses/sorting-data-python-pandas/

The rest of the course covers how to:

- Use the ascending parameter to change the sort order
- Sort a DataFrame by its index using .sort_index()
- Organize missing data while sorting values
- Sort a DataFrame in-place using inplace set to True