Skip to content

Instantly share code, notes, and snippets.

@StevenReitsma
Created February 23, 2018 11:41
Show Gist options
  • Save StevenReitsma/34c04ba903dd133df45d055b71bf8ff8 to your computer and use it in GitHub Desktop.
Save StevenReitsma/34c04ba903dd133df45d055b71bf8ff8 to your computer and use it in GitHub Desktop.
Blogpost-Heineken3
class WeekNumberCreator(object):
def __init__(self, datecol):
self.datecol = datecol
def transform(self, X):
return X.assign(weeknumber=lambda df: df.set_index(self.datecol).index.week)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment