Conteúdo do Curso
Introduction to Python for Data Analysis
Introduction to Python for Data Analysis
Sorting Data
We need sorting for ease of work.
We can sort our data in 2 ways: ascending sorting and descending sorting.
To perform the ascending sorting, use the following code:
If we want to perform descending, we have to turn off the ascending
parameter.
If the parameter inplace is set to
True
(inplace = True
), it will perform the operation inplace. Modify the original DataFrame itself. The return type isNone
.
Tarefa
Now we are going to practice sorting. We will sort 2 different DataFrame columns using ascending and descending sorting.
- Import the
pandas
using thepd
alias. - Perform an ascending sorting by the
'price'
column. - Perform a descending sorting by the
'user_id'
column.
Obrigado pelo seu feedback!
Sorting Data
We need sorting for ease of work.
We can sort our data in 2 ways: ascending sorting and descending sorting.
To perform the ascending sorting, use the following code:
If we want to perform descending, we have to turn off the ascending
parameter.
If the parameter inplace is set to
True
(inplace = True
), it will perform the operation inplace. Modify the original DataFrame itself. The return type isNone
.
Tarefa
Now we are going to practice sorting. We will sort 2 different DataFrame columns using ascending and descending sorting.
- Import the
pandas
using thepd
alias. - Perform an ascending sorting by the
'price'
column. - Perform a descending sorting by the
'user_id'
column.
Obrigado pelo seu feedback!
Sorting Data
We need sorting for ease of work.
We can sort our data in 2 ways: ascending sorting and descending sorting.
To perform the ascending sorting, use the following code:
If we want to perform descending, we have to turn off the ascending
parameter.
If the parameter inplace is set to
True
(inplace = True
), it will perform the operation inplace. Modify the original DataFrame itself. The return type isNone
.
Tarefa
Now we are going to practice sorting. We will sort 2 different DataFrame columns using ascending and descending sorting.
- Import the
pandas
using thepd
alias. - Perform an ascending sorting by the
'price'
column. - Perform a descending sorting by the
'user_id'
column.
Obrigado pelo seu feedback!
We need sorting for ease of work.
We can sort our data in 2 ways: ascending sorting and descending sorting.
To perform the ascending sorting, use the following code:
If we want to perform descending, we have to turn off the ascending
parameter.
If the parameter inplace is set to
True
(inplace = True
), it will perform the operation inplace. Modify the original DataFrame itself. The return type isNone
.
Tarefa
Now we are going to practice sorting. We will sort 2 different DataFrame columns using ascending and descending sorting.
- Import the
pandas
using thepd
alias. - Perform an ascending sorting by the
'price'
column. - Perform a descending sorting by the
'user_id'
column.