Open
Description
Question about pandera
I need to be able to create an empty dataframe and (maybe) populate it later. I hoped this would be fairly straight forward like np.empty(...)
but so far the best way I have found is to write an empty()
method for each SchemaModel
I have that explicitly creates a pd.DataFrame
with manually-maintained columns and dtypes. Have I overlooked something?