grakel.datasets.get_dataset_info¶
- grakel.datasets.get_dataset_info(dataset_name, default=None)[source][source]¶
 Return the info concerning the existence of a certain dataset.
- Parameters
 - dataset_namestr
 The name of the dataset.
- defaultObject, default=None
 The default return value if the dataset is not found.
- Returns
 - dictionary_getdefault or dictionary_entry
 The info of a dataset as a dictionary with fields:
nl : A boolean flag indicating if the dataset has node labels.
el : A boolean flag indicating if the dataset has edge labels.
na : A boolean flag indicating if the dataset has node attributes.
ea : A boolean flag indicating if the dataset has edge attributes.
link : A str corresponding to the download link of the dataset.