Skip to content

Commit 5f81c4f

Browse files
committed
chicago data for model monitoring
1 parent 85fef87 commit 5f81c4f

2 files changed

Lines changed: 733 additions & 1 deletion

File tree

vetiver/data/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
sources = {
44
"mtcars": _files("vetiver") / "data/mtcars.csv",
5+
"chicago": _files("vetiver") / "data/chicago.csv",
56
}
67

78

@@ -12,6 +13,6 @@ def __dir__():
1213
def __getattr__(k):
1314
import pandas as pd
1415

15-
f_path = sources.get("mtcars")
16+
f_path = sources.get(k)
1617

1718
return pd.read_csv(f_path)

0 commit comments

Comments
 (0)