Removing Columns from TabularPandas

I’d like to remove all time columns from this TabularPandas to make a new to_tindep (time independent) one:

to = TabularPandas(df,procs,cat,cont,y_names="surfaceShadingDeviceIsOnTimeFraction_SouthFacingWindow_bool",splits=splits)

Does anyone know how to make a new instance of this TabularPandas which excludes some columns?

Your help is appreciated.
-Simon

Can you just drop them from your Pandas dataframe prior to creating the TabularPandas object?

df = df.drop('column_name', 1)