Зміст курсу
Data Manipulation using pandas
Data Manipulation using pandas
2. Preprocessing Data: Part II
Challenge
Now it's your turn to remove rows with wrong data!
Завдання
Swipe to begin your solution
- Get indexes of rows having 'inconsistent' data. Follow the next steps:
-
Apply the
.loc[]
property to thedf
dataframe. -
Set condition on rows: row sums of 2-14 columns (
[2:15]
) must be not equal to values in the'hhsize'
column. -
Use the
.index
attribute.
- Drop rows using indexes saved within
ind
variable. Set theinplace
parameter to rewrite the changes.
Рішення
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 2. Розділ 3
Challenge
Now it's your turn to remove rows with wrong data!
Завдання
Swipe to begin your solution
- Get indexes of rows having 'inconsistent' data. Follow the next steps:
-
Apply the
.loc[]
property to thedf
dataframe. -
Set condition on rows: row sums of 2-14 columns (
[2:15]
) must be not equal to values in the'hhsize'
column. -
Use the
.index
attribute.
- Drop rows using indexes saved within
ind
variable. Set theinplace
parameter to rewrite the changes.
Рішення
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 2. Розділ 3
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів