Skip to content

Commit 37f3828

Browse files
committed
changing where the notebook data is
1 parent 98563d0 commit 37f3828

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

example_basic_optimize.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
"source": [
138138
"import pandas as pd\n",
139139
"import ast #used for conversion of the id list pandas is reading\n",
140-
"df = pd.read_csv('vals.csv', converters={0:lambda x: ast.literal_eval(x)})\n",
140+
"df = pd.read_csv('data/example_data.csv', converters={0:lambda x: ast.literal_eval(x)})\n",
141141
"df"
142142
]
143143
},

example_brisk_optimize.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
"import numpy as np\n",
139139
"import pandas as pd\n",
140140
"import ast #used for conversion of the id list pandas is reading\n",
141-
"df = pd.read_csv('vals.csv', converters={0:lambda x: ast.literal_eval(x)})\n",
141+
"df = pd.read_csv('data/example_data.csv', converters={0:lambda x: ast.literal_eval(x)})\n",
142142
"df"
143143
]
144144
},

example_fast_optimize.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
"import itertools\n",
135135
"import pandas as pd\n",
136136
"import ast #used for conversion of the id list pandas is reading\n",
137-
"df = pd.read_csv('vals.csv', converters={0:lambda x: ast.literal_eval(x)})\n",
137+
"df = pd.read_csv('data/example_data.csv', converters={0:lambda x: ast.literal_eval(x)})\n",
138138
"df"
139139
]
140140
},

0 commit comments

Comments
 (0)