Data Manipulation

Learn to sort and filter data presented in a Dash DataTable to enhance user interactivity and build dynamic tables.

Data manipulation is a crucial skill in the world of data analysis. Typically those that work with data are used to being able to undertake sorting and filtering data to quickly get to the information they need.

Here we will explore how to do just that using Dash DataTable. It will greatly enhance the user interactivity in the app.

Sorting data

Sorting data can be done through the user interface by setting the following properties:

  • sort_action: This property allows us to sort the data for a particular column or set of columns. Set to none for no sorting functionality,native if we want sorting functionality to appear in the display for us to use, and custom for more advanced use cases beyond this course’s scope. In the vast majority of use cases, sort_action='native' is a perfect solution.
  • sort_mode: This allows users to either be on one particular column (single) or based on multiple columns simultaneously (multi).

With these properties set, each column will have an upward and downward arrow to control the order in which you wish to sort ...