Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -117,7 +117,7 @@ def generate_report(file, type):
|
|
| 117 |
max_cols_analyzed=30,save_plot_dir=None)
|
| 118 |
reports = []
|
| 119 |
print(os.listdir("./"))
|
| 120 |
-
output_dir_html="./
|
| 121 |
for filename in os.listdir(output_dir_html):
|
| 122 |
if filename.endswith(".html"):
|
| 123 |
title = os.path.splitext(filename)[0] # Extract title from filename (without extension)
|
|
@@ -129,7 +129,7 @@ def generate_report(file, type):
|
|
| 129 |
max_cols_analyzed=30,save_plot_dir=None)
|
| 130 |
|
| 131 |
imgs = []
|
| 132 |
-
output_dir_img="./
|
| 133 |
for filename in os.listdir(output_dir_img):
|
| 134 |
if filename.endswith(".png"):
|
| 135 |
title = os.path.splitext(filename)[0] # Extract title from filename (without extension)
|
|
|
|
| 117 |
max_cols_analyzed=30,save_plot_dir=None)
|
| 118 |
reports = []
|
| 119 |
print(os.listdir("./"))
|
| 120 |
+
output_dir_html="./AutoViz_Plots"
|
| 121 |
for filename in os.listdir(output_dir_html):
|
| 122 |
if filename.endswith(".html"):
|
| 123 |
title = os.path.splitext(filename)[0] # Extract title from filename (without extension)
|
|
|
|
| 129 |
max_cols_analyzed=30,save_plot_dir=None)
|
| 130 |
|
| 131 |
imgs = []
|
| 132 |
+
output_dir_img="./AutoViz_Plots"
|
| 133 |
for filename in os.listdir(output_dir_img):
|
| 134 |
if filename.endswith(".png"):
|
| 135 |
title = os.path.splitext(filename)[0] # Extract title from filename (without extension)
|