rameshmoorthy
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -116,7 +116,8 @@ def generate_report(file, type):
|
|
116 |
lowess=False,chart_format='html',max_rows_analyzed=150000,
|
117 |
max_cols_analyzed=30,save_plot_dir=None)
|
118 |
reports = []
|
119 |
-
|
|
|
120 |
for filename in os.listdir(output_dir_html):
|
121 |
if filename.endswith(".html"):
|
122 |
title = os.path.splitext(filename)[0] # Extract title from filename (without extension)
|
@@ -128,7 +129,7 @@ def generate_report(file, type):
|
|
128 |
max_cols_analyzed=30,save_plot_dir=None)
|
129 |
|
130 |
imgs = []
|
131 |
-
output_dir_img=
|
132 |
for filename in os.listdir(output_dir_img):
|
133 |
if filename.endswith(".png"):
|
134 |
title = os.path.splitext(filename)[0] # Extract title from filename (without extension)
|
|
|
116 |
lowess=False,chart_format='html',max_rows_analyzed=150000,
|
117 |
max_cols_analyzed=30,save_plot_dir=None)
|
118 |
reports = []
|
119 |
+
print(dir("./"))
|
120 |
+
output_dir_html="./AutoViz"
|
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"
|
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)
|