Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add efficient way of concatenating multiple DataFrame objects #7332

Open
totalgit74 opened this issue Dec 10, 2024 · 0 comments
Open

Add efficient way of concatenating multiple DataFrame objects #7332

totalgit74 opened this issue Dec 10, 2024 · 0 comments
Labels
enhancement New feature or request untriaged New issue has not been triaged

Comments

@totalgit74
Copy link

Whilst there is the ability to append a DataFrame to another pre-existing frame using the Append method it would be great to have a method/overload that allows for the efficient concatenation of multiple DataFrames. Whilst it is possible to loop to perform this function or chain multiple calls it does not seem like that would be a very efficient way of doing things compared to an "under the hood" implementation that could better optimise for performance.

An example of such functionality can be seen with R's rbindlist() function in the data.table library that will concatenate many large datasets efficiently. It also allows for matching by column names and filling of missing values, although that would not be needed in an initial implementation.

@totalgit74 totalgit74 added the enhancement New feature or request label Dec 10, 2024
@dotnet-policy-service dotnet-policy-service bot added the untriaged New issue has not been triaged label Dec 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request untriaged New issue has not been triaged
Projects
None yet
Development

No branches or pull requests

1 participant