Machine-Learning-Problems-DataSets icon indicating copy to clipboard operation
Machine-Learning-Problems-DataSets copied to clipboard

We currently maintain 488 data sets as a service to the machine learning community. You may view all data sets through our searchable interface. For a general overview of the Repository, please visit...

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]