I am trying to convert an existing column in my polars dataframe from Date to Month. The documentation here is not clear to me on how to call such methods.
In pandas it looks like this to convert Date -> Month:
pd.DatetimeIndex(df['column']).month.astype(np.int16)
What is the polars equivalent?