list_available_datasets {ucimlrepo}R Documentation

List Available Datasets from UCI ML Repository

Description

Prints a list of datasets that can be imported via the fetch_ucirepo function.

Usage

list_available_datasets(filter, search, area)

Arguments

filter

Character. Optional query to filter available datasets based on a label.

search

Character. Optional query to search for available datasets by name.

area

Character. Optional query to filter available datasets based on subject area.

Value

A data frame containing the list of available datasets with columns of:

In the event the search fails, the data frame returned will be empty.

Examples

list_available_datasets(search = "iris")
list_available_datasets(area = "social science")
list_available_datasets(filter = "python") # Required for now...

[Package ucimlrepo version 0.0.2 Index]