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
Copy file name to clipboardExpand all lines: examples/panel_data-formats.ipynb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
"cell_type": "markdown",
19
19
"metadata": {},
20
20
"source": [
21
-
"## Multi Index DataFrames\n",
21
+
"## MultiIndex DataFrames\n",
22
22
"The most precise data format to use is a MultiIndex `DataFrame`. This is the most precise since only single columns can preserve all types within a panel. For example, it is not possible to span a single Categorical variable across multiple columns when using a pandas `Panel`. \n",
23
23
"\n",
24
24
"This example uses the job training data to construct a MultiIndex `DataFrame` using the `set_index` command. The entity index is `fcode` and the time index is `year`."
@@ -39,7 +39,7 @@
39
39
"cell_type": "markdown",
40
40
"metadata": {},
41
41
"source": [
42
-
"Here `set_index` is used to set the multi index using the firm code (entity) and year (time)."
42
+
"Here `set_index` is used to set the MultiIndex using the firm code (entity) and year (time)."
0 commit comments