Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9225285
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T04:32:25+00:00 2026-06-18T04:32:25+00:00

I’ve got 7000 data frames with columns Date, X_1 Date, X_2 … Each dataframe

  • 0

I’ve got 7000 data frames with columns

Date, X_1
Date, X_2
...

Each dataframe has around 2500 rows.

The dates sometimes overlap, but are not guaranteed to do so.

I’d like to combine them into a dataframe of the form

Date  X_1  X_2 etc.

I tried applying combine_first 7000 times, but it was really slow, as it had to create 7000 new objects, each slightly bigger than the last one.

Is there a more efficient way to combine multiple dataframes?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T04:32:27+00:00Added an answer on June 18, 2026 at 4:32 am

    Assuming that Date is the index rather than a column then you can do an “outer” join:

    df1.join([df2, df3, ..., df7000], how='outer')
    

    Note: it may be more efficient to pass in a generator of DataFrames rather than a list.

    For example:

    df1 = pd.DataFrame([[1, 2]], columns=['a', 'b'])
    df2 = pd.DataFrame([[3, 4]], index=[1], columns=['c', 'd'])
    df3 = pd.DataFrame([[5, 6], [7, 8]], columns=['e', 'f'])
    
    In [4]: df1.join([df2, df3], how='outer')
    Out[4]: 
        a   b   c   d  e  f
    0   1   2 NaN NaN  5  6
    1 NaN NaN   3   4  7  8
    

    .

    If 'Date' is a column you can use set_index first:

    df1.set_index('Date', inplace=True)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I want to count how many characters a certain string has in PHP, but
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I am using JSon response to parse title,date content and thumbnail images and place
In my XML file chapters tag has more chapter tag.i need to display chapters
I have an array which has BIG numbers and small numbers in it. I
i got an object with contents of html markup in it, for example: string
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.