(Keep using the same notebook you used in the activity 1.)
- Filter the results for women, and store the results in another DataFrame
filtered2. - Check the first 10 rows of the DataFrame using the
head()function. - Reset the index of
filtered2with and without using the parameterdrop=Trueand check the difference in the results. - Show the rows from index number 100 to 200.
- Use
ilocto get the first 100 rows and columns with indexes 2,3,4,5.