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

Concatenate multiple dataframes #98

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

jihoonkang0829
Copy link

What?

Per #83, I have mimicked the pandas.concat method to implement outer and inner concat for DataFrame, based on the pre-existing concat method in Combining class.

Why?

Enhancement for v1.1 milestone.

How?

  • Modularized the combined DataFrame filling segment of concat.
  • Implemented the inner and outer join based on the original concat.
  • Added method and docstring to the DataFrame class.

Testing?

I have added tested both inner and outer concat.

Anything Else?

Performance of concat function can be further improved by improving the runtime of fillConcatDataFrame, such as by updating each combined column instead of by each index.

I have found out that concat method already exists, thus I have mimicked pandas.concat to implement inner concat. The function is added as a method to DataFrame with docstring and tested.
@jihoonkang0829 jihoonkang0829 changed the title 83 Concatenate multiple dataframes Nov 18, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant