Update app.py
Browse files
app.py
CHANGED
|
@@ -151,7 +151,7 @@ No enumerator bias has been found.
|
|
| 151 |
|
| 152 |
# --- Table 1.2 loader & filter ---
|
| 153 |
def load_and_filter_table(col=None, val=None):
|
| 154 |
-
df = pd.read_csv("
|
| 155 |
if col and val:
|
| 156 |
df = df[df[col].astype(str).str.contains(str(val), case=False, na=False)]
|
| 157 |
return df
|
|
|
|
| 151 |
|
| 152 |
# --- Table 1.2 loader & filter ---
|
| 153 |
def load_and_filter_table(col=None, val=None):
|
| 154 |
+
df = pd.read_csv("issues_log.csv") # Your table_1_2 file
|
| 155 |
if col and val:
|
| 156 |
df = df[df[col].astype(str).str.contains(str(val), case=False, na=False)]
|
| 157 |
return df
|