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