gitextract_4phs78pk/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── README.rst ├── docs/ │ ├── Makefile │ └── source/ │ ├── conf.py │ ├── handyspark.extensions.rst │ ├── handyspark.ml.rst │ ├── handyspark.rst │ ├── handyspark.sql.rst │ ├── includeme.rst │ ├── index.rst │ └── modules.rst ├── handyspark/ │ ├── __init__.py │ ├── extensions/ │ │ ├── __init__.py │ │ ├── common.py │ │ ├── evaluation.py │ │ └── types.py │ ├── ml/ │ │ ├── __init__.py │ │ └── base.py │ ├── plot.py │ ├── sql/ │ │ ├── __init__.py │ │ ├── dataframe.py │ │ ├── datetime.py │ │ ├── pandas.py │ │ ├── schema.py │ │ ├── string.py │ │ └── transform.py │ ├── stats.py │ └── util.py ├── notebooks/ │ └── Exploring_Titanic.ipynb ├── requirements.txt ├── setup.cfg ├── setup.py └── tests/ ├── handyspark/ │ ├── conftest.py │ ├── extensions/ │ │ ├── test_evaluation.py │ │ └── test_types.py │ ├── ml/ │ │ └── test_base.py │ ├── sql/ │ │ ├── test_dataframe.py │ │ ├── test_datetime.py │ │ ├── test_pandas.py │ │ ├── test_schema.py │ │ ├── test_string.py │ │ └── test_transform.py │ ├── test_plot.py │ ├── test_stats.py │ └── test_util.py └── rawdata/ └── train.csv