whylabs/whylogs-python

View on GitHub
python/whylogs/datasets/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
from whylogs.datasets.ecommerce import Ecommerce
from whylogs.datasets.employee import Employee
from whylogs.datasets.weather import Weather

__ALL__ = [
    # column
    Weather,
    Ecommerce,
    Employee,
]