You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am following religiously your tutorial, that is GREAT.
I ended up in having an issue though.
When I try to concatenate the results of my multiple searches result = pd.concat(dicti, axis=1) result.columns = result.columns.droplevel(0) result = result.drop('isPartial', axis = 1)
I receive this error TypeError: cannot concatenate object of type '<class 'dict'>'; only Series and DataFrame objs are valid
I have understood that Python doesn't allow me to concatenate the results of my searches, but I have no idea how to overcome this issue. Can you maybe help me?
(this is my first request on GitHub, so I apologize in advance if lacks the "etiquette" of this place)
The text was updated successfully, but these errors were encountered:
Hello,
I am following religiously your tutorial, that is GREAT.
I ended up in having an issue though.
When I try to concatenate the results of my multiple searches
result = pd.concat(dicti, axis=1) result.columns = result.columns.droplevel(0) result = result.drop('isPartial', axis = 1)
I receive this error
TypeError: cannot concatenate object of type '<class 'dict'>'; only Series and DataFrame objs are valid
I have understood that Python doesn't allow me to concatenate the results of my searches, but I have no idea how to overcome this issue. Can you maybe help me?
(this is my first request on GitHub, so I apologize in advance if lacks the "etiquette" of this place)
The text was updated successfully, but these errors were encountered: