Skip to content

Instantly share code, notes, and snippets.

View chrisdmell's full-sized avatar

Chris Aloysius Dmello chrisdmell

View GitHub Profile
@chrisdmell
chrisdmell / dataclean.py
Last active December 8, 2021 15:16
CatBoost Regression: EDA And Model Building Approach
class DataClean:
@staticmethod
def load_data(path):
"""
Read a CSV file from a given path and return a Pandas DataFrame
:param path: path to csv file
:return: returns Pandas DataFrame
"""