Skip to content

Commit

Permalink
Update 04_dependency.ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
Polkas authored Oct 4, 2023
1 parent 6684a1e commit 6f2ce96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/multidim/notebooks/04_dependency.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@
"metadata": {},
"outputs": [],
"source": [
"table_raw = pd.crosstab(auto.rep78.fillna('missing'), auto.foreign)\n",
"table_full = pd.crosstab(auto.rep78.fillna('missing'), auto.foreign, margins = True)\n",
"table_raw = pd.crosstab(auto.rep78.fillna('missing'), auto.foreign.astype('str'))\n",
"table_full = pd.crosstab(auto.rep78.fillna('missing'), auto.foreign.astype('str'), margins = True)\n",
"table_full"
]
},
Expand Down

0 comments on commit 6f2ce96

Please sign in to comment.