Home > Software engineering >  Error trying to join 3 csv tables together in Pandas
Error trying to join 3 csv tables together in Pandas

Time:11-04

housing_temp = [cal_housing, proximity]

This is the code I'm using ^. Then I run this:

housing = pd.DataFrame(housing_temp)

Here is the error:

---------------------------------------------------------------------------

StopIteration Traceback (most recent call last)

I'm not sure why it's not working, as it had previously. Will load my data in a comment.

CodePudding user response:

use pd. concat

df=  pd.concat(housing_temp)
  • Related