I would like to have empty dataframe and them appe...
# daft-dev
a
I would like to have empty dataframe and them append/concat dataframes to or have a list of dataframes and concatinate them. How can I do that?
k
Hi Aleksandar! We don't have a great way to create an empty dataframe with a certain schema, but if you would like to concatenate multiple dataframes with the same schema, you can use the DataFrame.concat function
a
Thanks @Kevin Wang That will work.