Open oldoc63 opened 2 years ago
Sometimes, a dataset is broken into multiple tables. For instance, data is often split into multiple CSV files so that each download is smaller.
When we need to reconstruct a single DataFrame from multiple smaller DataFrames, we can use the method pd.concat([df1, df2, df3, ...]).
pd.concat([df1, df2, df3, ...])
An ice cream parlor and a bakery have decided to merge. The bakery's menu is stored in the DataFrame bakery, and the ice cream parlor's menu is stored in DataFrame ice_cream. Display menu using print.
bakery
ice_cream
Sometimes, a dataset is broken into multiple tables. For instance, data is often split into multiple CSV files so that each download is smaller.
When we need to reconstruct a single DataFrame from multiple smaller DataFrames, we can use the method
pd.concat([df1, df2, df3, ...])
.