startable/pdtable

add_column results in fragmented dataframes

Opened this issue · 0 comments

boqa commented

In frame.py: add_column, a column is added to the dataframe using df[name] = values.
This triggers and insert which may cause the dataframe to become fragmented if repeated multiple times.

Pandas recommend instead to use "concat" to insert new data.