Skip to content

Commit

Permalink
Change data links to new repo
Browse files Browse the repository at this point in the history
Fixes #91
  • Loading branch information
kwinkunks committed Dec 9, 2023
1 parent 3895094 commit a00841e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/notebooks/Tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@
"source": [
"import pandas as pd\n",
"\n",
"df = pd.read_csv('https://geocomp.s3.amazonaws.com/data/Panoma_training_data.csv')\n",
"df = pd.read_csv('https://raw.githubusercontent.com/scienxlab/datasets/main/kgs/Panoma_training_data.csv')\n",
"\n",
"df.head()"
]
Expand Down
2 changes: 1 addition & 1 deletion docs/notebooks/Using_redflag_with_Pandas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
"source": [
"import pandas as pd\n",
"\n",
"df = pd.read_csv('https://geocomp.s3.amazonaws.com/data/Panoma_training_data.csv')\n",
"df = pd.read_csv('https://raw.githubusercontent.com/scienxlab/datasets/main/kgs/Panoma_training_data.csv')\n",
"\n",
"df.head()"
]
Expand Down
2 changes: 1 addition & 1 deletion docs/notebooks/Using_redflag_with_sklearn.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
"source": [
"import pandas as pd\n",
"\n",
"df = pd.read_csv('https://geocomp.s3.amazonaws.com/data/Panoma_training_data.csv')\n",
"df = pd.read_csv('https://raw.githubusercontent.com/scienxlab/datasets/main/kgs/Panoma_training_data.csv')\n",
"\n",
"# Look at the transposed summary: each column in the DataFrame is a row here.\n",
"df.describe().T"
Expand Down

0 comments on commit a00841e

Please sign in to comment.