Skip to content

Commit 0d6ee19

Browse files
committed
DATA_FOLDER -> DATA_PATH
1 parent 78cb8c0 commit 0d6ee19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mglearn/datasets.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from sklearn.preprocessing import MinMaxScaler, PolynomialFeatures
77
from .make_blobs import make_blobs
88

9-
DATA_FOLDER = os.path.join(os.path.dirname(__file__), "..", "data")
9+
DATA_PATH = os.path.join(os.path.dirname(__file__), "..", "data")
1010

1111

1212
def make_forge():
@@ -37,7 +37,7 @@ def load_extended_boston():
3737

3838

3939
def load_citibike():
40-
data_mine = pd.read_csv(os.path.join(DATA_FOLDER, "citibike.csv"))
40+
data_mine = pd.read_csv(os.path.join(DATA_PATH, "citibike.csv"))
4141
data_mine['one'] = 1
4242
data_mine['starttime'] = pd.to_datetime(data_mine.starttime)
4343
data_starttime = data_mine.set_index("starttime")

0 commit comments

Comments
 (0)