Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 2.38 KB

File metadata and controls

44 lines (32 loc) · 2.38 KB

UCI Machine Learning Repository in CSV

The UCI Machine Learning Repository is a collection of databases, domain theories, and data generators that are used by the machine learning community for the empirical analysis of machine learning algorithms.UCI Machine Learning

Data Set Colletion For UCI

  • Step-1: Goto this link

  • Step-2: Select the Data Sets

  • Step-3: Copy the Data Url

  • Step-4: Copy the Attribute Information:

Usage

import numpy as np
import pandas as pd

URL = "https://archive.ics.uci.edu/ml/machine-learning-databases/adult/adult.data"
Col_Names  = ['age','workclass','fnlwgt','education','education-num','marital-status','occupation','relationship','race','sex','capital-loss','hours-per-week','native-country','Income']

Data = pd.read_csv(URL,header=None)
Data.columns = Names
Data

Contributing

If any one Intrested work with Use Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

References To Learn and Develop your Self:


License

MIT[Copyright (c) 2020 REDDY PRASAD]