Skip to content

Instantly share code, notes, and snippets.

View chepner's full-sized avatar

Clint Hepner chepner

View GitHub Profile
import pandas as pd
class ExtendedDF(pd.DataFrame):
def __init__(self, df: pd.DataFrame):
self.title = 'some dataframe'
super().__init__(df)
somedf = pd.DataFrame()
extdf = ExtendedDF(df=somedf)