apoor.data package

Module contents

Dataset functions.

Includes functions for loading common datasets as pandas DataFrames.

apoor.data.list_datasets()

Get available datasets.

Each dataset in the list can be loaded with a load_<name> function, where <name> is the name of the dataset.

Returns:Returns a list of the available datasets.
apoor.data.load_boston()

Load boston housing dataset.

Loads the boston housing dataset as a Pandas DataFrame.

Boston Housing dataset: https://www.cs.toronto.edu/~delve/data/boston/bostonDetail.html

Returns:Boston Housing dataset as a Pandas DataFrame.
apoor.data.load_iris()

Load iris dataset.

Loads the iris dataset as a Pandas DataFrame.

Iris dataset: https://archive.ics.uci.edu/ml/datasets/iris

Returns:Iris dataset as a Pandas DataFrame.