There was an error while loading. Please reload this page.
1 parent 7a64735 commit f6e4d3fCopy full SHA for f6e4d3f
1 file changed
lectures/pandas_panel.md
@@ -150,7 +150,7 @@ the row index (`.unstack()` works in the opposite direction - try it
150
out)
151
152
```{code-cell} ipython3
153
-realwage.stack().head()
+realwage.stack(future_stack=True).head()
154
```
155
156
We can also pass in an argument to select the level we would like to
@@ -432,7 +432,7 @@ plt.show()
432
summary statistics
433
434
435
-merged.stack().describe()
+merged.stack(future_stack=True).describe()
436
437
438
This is a simplified way to use `groupby`.
0 commit comments