Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,9 +13,7 @@ def display_table():
|
|
| 13 |
return df
|
| 14 |
|
| 15 |
# Tab 2
|
| 16 |
-
|
| 17 |
-
size_df["Size"] = size_df["Size"].str.replace("b", "").astype(float)
|
| 18 |
-
size_map = size_df.set_index("id")["Size"].to_dict()
|
| 19 |
raw_data = pd.read_csv("./tagged_data.csv")
|
| 20 |
|
| 21 |
def plot_scatter(cat, x, y, col):
|
|
|
|
| 13 |
return df
|
| 14 |
|
| 15 |
# Tab 2
|
| 16 |
+
size_map = json.load(open("size_map.json"))
|
|
|
|
|
|
|
| 17 |
raw_data = pd.read_csv("./tagged_data.csv")
|
| 18 |
|
| 19 |
def plot_scatter(cat, x, y, col):
|