Skip to content

Commit

Permalink
[DOC] fix typo in AA_datatypes_and_datasets.ipynb panel data loadin…
Browse files Browse the repository at this point in the history
…g example (#5594)

This PR fixes a typo in the `AA_datatypes_and_datasets.ipynb` panel data
loading example - the `set_index` call had the instance and time lable
in the wrong sequence.
  • Loading branch information
fkiraly authored Dec 22, 2023
1 parent 4abac49 commit 4f0e17d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/AA_datatypes_and_datasets.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -3166,7 +3166,7 @@
}
],
"source": [
"df_panel = df_panel.set_index([\"timepoints\", \"level_0\"])\n",
"df_panel = df_panel.set_index([\"level_0\", \"timepoints\"])\n",
"type(df_panel.index)"
]
},
Expand Down

0 comments on commit 4f0e17d

Please sign in to comment.