Skip to main content

Easy access to datasets from the UCI Machine Learning Repository

Project description

Build Status Documentation Status

An API to the UCI Machine Learning Repository

This is a python package to enable easy access to datasets in the UCI Machine Learning Repository. Note that this is not an official API. Any usage of datasets should be cited according to instructions in the UCI Machine Learning Repository.

The project is at an early alpha stage, so suggestion for changes or additions are very welcome.

Link to documentation.

Basic usage

from ucimlr import datasets
abalone = datasets.Abalone()
print(abalone.type)
>>> regression
print(len(abalone))
>>> 3341

Independent and dependent variables are accessed as numpy arrays:

print(abalone.x.shape)
>>> (3341, 10)
print(abalone.y.shape)
>>> (3341, 1)

Or by element access:

x, y = dataset[0]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ucimlr-0.0.3.tar.gz (5.7 kB view hashes)

Uploaded Source

Built Distribution

ucimlr-0.0.3-py3-none-any.whl (11.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page