Created
December 13, 2021 17:35
-
-
Save thepycoach/edaa3bdba54ff140f7589e306ee64918 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Filtered gender in StudentsPerformance_csv | |
| StudentsPerformance_csv = StudentsPerformance_csv[StudentsPerformance_csv['gender'] == 'female'] | |
| # Filtered race/ethnicity in StudentsPerformance_csv | |
| StudentsPerformance_csv = StudentsPerformance_csv[StudentsPerformance_csv['race/ethnicity'] == 'group B'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment