Created
July 30, 2022 08:49
-
-
Save polzerdo55862/a176ea252662df772d9e60f590d14fca 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
| import pandas as pd | |
| df = pd.read_csv("<https://archive.ics.uci.edu/ml/machine-learning-databases/adult/adult.data>", | |
| names = ["age", | |
| "workclass", | |
| "fnlwgt", | |
| "education", | |
| "education-num", | |
| "marital-status", | |
| "occupation", | |
| "relationship", | |
| "race", | |
| "sex", | |
| "capital-gain", | |
| "capital-loss", | |
| "hours-per-week", | |
| "native-country", | |
| "income"], | |
| index_col=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment