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
That's because pandas doesn't support passing in a list of lists as a multi-index. Instead you have to create a MultiIndex object first and pass that in
I just noticed there's a problem with
load_dataframe_from_json
when trying to load multi-index dataframes.That's because pandas doesn't support passing in a list of lists as a multi-index. Instead you have to create a
MultiIndex
object first and pass that inSo one possible fix would be
The text was updated successfully, but these errors were encountered: