openml.study.list_suites¶
-
openml.study.list_suites(offset: Union[int, NoneType] = None, size: Union[int, NoneType] = None, status: Union[str, NoneType] = None, uploader: Union[List[int], NoneType] = None, output_format: str = 'dict') → Union[Dict, pandas.core.frame.DataFrame]¶ Return a list of all suites which are on OpenML.
- Parameters
- offsetint, optional
The number of suites to skip, starting from the first.
- sizeint, optional
The maximum number of suites to show.
- statusstr, optional
Should be {active, in_preparation, deactivated, all}. By default active suites are returned.
- uploaderlist (int), optional
Result filter. Will only return suites created by these users.
- output_format: str, optional (default=’dict’)
The parameter decides the format of the output. - If ‘dict’ the output is a dict of dict - If ‘dataframe’ the output is a pandas DataFrame
- Returns
- datasetsdict of dicts, or dataframe
- If output_format=’dict’
Every suite is represented by a dictionary containing the following information: - id - alias (optional) - name - main_entity_type - status - creator - creation_date
- If output_format=’dataframe’
Every row is represented by a dictionary containing the following information: - id - alias (optional) - name - main_entity_type - status - creator - creation_date