specless.dataset.BaseDataset
- class specless.dataset.BaseDataset(data: List[DataFrame])[source]
Bases:
object
Base Dataset Class
Methods
Apply a function to each item in the data.
Convert the data to a list.
Attributes
Get the length of the data.
- apply(func: Callable[[...], Any]) None [source]
Apply a function to each item in the data.
- Parameters:
func (Callable[..., Any]) – The function to apply to each item.
- property length: int
Get the length of the data.
- Returns:
The length of the data.
- Return type:
int