Skip to content

Commit

Permalink
Merge pull request #44 from AhMedDa1/main
Browse files Browse the repository at this point in the history
Update the wget link in the Bayesian_workflow notebook
  • Loading branch information
elizavetasemenova authored Dec 3, 2024
2 parents 4960ad7 + ed865b6 commit 9e82c64
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions 11_Bayesian_workflow.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
},
{
"cell_type": "code",
"execution_count": 29,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -574,7 +574,11 @@
"source": [
"#!wget -O Howell1.csv https://github.com/elizavetasemenova/prob-epi/blob/main/data/Howell1.csv\n",
"\n",
"df = pd.read_csv('data/Howell1.csv', sep=\";\")\n",
"!wget -O Howell1.csv https://raw.githubusercontent.com/elizavetasemenova/prob-epi/main/data/Howell1.csv\n",
"\n",
"df = pd.read_csv('Howell1.csv', delimiter=';')\n",
"df.columns = df.columns.str.replace('\"', '')\n",
"# df = pd.read_csv('data/Howell1.csv', sep=\";\")\n",
"df.head()"
]
},
Expand Down

0 comments on commit 9e82c64

Please sign in to comment.