Skip to content

Commit

Permalink
fix quarto error
Browse files Browse the repository at this point in the history
  • Loading branch information
jelletreep committed Sep 28, 2023
1 parent fc87aa1 commit 5353d30
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 1,049 deletions.
20 changes: 17 additions & 3 deletions book/data-science-with-pandas-3.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
"metadata": {},
"outputs": [],
"source": [
"surveys_df = pd.read_csv(\"../course_materials/data/surveys.csv\")\n",
"species_df = pd.read_csv(\"../course_materials/data/species.csv\")"
"surveys_df = pd.read_csv(\"../course_materials/data/surveys.csv\", keep_default_na=False, na_values=[\"\"])\n",
"species_df = pd.read_csv(\"../course_materials/data/species.csv\", keep_default_na=False, na_values=[\"\"])"
]
},
{
Expand Down Expand Up @@ -330,8 +330,22 @@
}
],
"metadata": {
"kernelspec": {
"display_name": "whisperx",
"language": "python",
"name": "python3"
},
"language_info": {
"name": "python"
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
}
},
"nbformat": 4,
Expand Down
Loading

0 comments on commit 5353d30

Please sign in to comment.