...
/Exercise: Sorting, Columns, Filtering, and Indexing Operations.
Exercise: Sorting, Columns, Filtering, and Indexing Operations.
Solve some problems related to sorting, columns, filtering, and indexing operations.
We'll cover the following...
Problem 1: Sorting
Given the following DataFrame:
col1 col2 col3 col40 A B C D1 E F NaN H2 I J Z Y3 S X E V4 Q A B W
Perform the following operations:
a) Sort the index.
b) Sort by a single column col1
.
c) Sort by col1
...