Issue
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.
Solution
use pd. concat
df= pd.concat(housing_temp)
Answered By - wwnde
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.