Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -9,20 +9,13 @@ class DataAnalyzer:
|
|
9 |
self.temp_dir = tempfile.mkdtemp()
|
10 |
|
11 |
def generate_sweetviz_report(self, df):
|
12 |
-
# Create Sweetviz report
|
13 |
report = sv.analyze(df)
|
14 |
-
|
15 |
-
# Save to temporary file with specific name
|
16 |
report_path = os.path.join(self.temp_dir, "sweetviz_report.html")
|
17 |
report.show_html(report_path, open_browser=False)
|
18 |
|
19 |
-
# Read the generated HTML
|
20 |
with open(report_path, 'r', encoding='utf-8') as f:
|
21 |
html_content = f.read()
|
22 |
-
|
23 |
-
# Clean up the temporary file
|
24 |
os.remove(report_path)
|
25 |
-
|
26 |
return html_content
|
27 |
|
28 |
def create_interface():
|
@@ -35,8 +28,8 @@ def create_interface():
|
|
35 |
file_input = gr.File(label="Upload CSV")
|
36 |
dataset_info = gr.JSON(label="Dataset Information")
|
37 |
|
38 |
-
#
|
39 |
-
report_html = gr.HTML(label="Analysis Report"
|
40 |
|
41 |
def process_file(file):
|
42 |
if file is None:
|
@@ -45,9 +38,7 @@ def create_interface():
|
|
45 |
try:
|
46 |
df = pd.read_csv(file.name)
|
47 |
|
48 |
-
#
|
49 |
-
df['value'] = pd.to_numeric(df['value'], errors='coerce')
|
50 |
-
|
51 |
info = {
|
52 |
"Rows": len(df),
|
53 |
"Columns": len(df.columns),
|
@@ -59,7 +50,14 @@ def create_interface():
|
|
59 |
# Generate Sweetviz report
|
60 |
report = analyzer.generate_sweetviz_report(df)
|
61 |
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
except Exception as e:
|
65 |
return {"error": str(e)}, f"Error generating report: {str(e)}"
|
@@ -75,6 +73,5 @@ def create_interface():
|
|
75 |
if __name__ == "__main__":
|
76 |
demo = create_interface()
|
77 |
demo.launch(
|
78 |
-
height=1000, # Increased height for better report visibility
|
79 |
show_error=True
|
80 |
)
|
|
|
9 |
self.temp_dir = tempfile.mkdtemp()
|
10 |
|
11 |
def generate_sweetviz_report(self, df):
|
|
|
12 |
report = sv.analyze(df)
|
|
|
|
|
13 |
report_path = os.path.join(self.temp_dir, "sweetviz_report.html")
|
14 |
report.show_html(report_path, open_browser=False)
|
15 |
|
|
|
16 |
with open(report_path, 'r', encoding='utf-8') as f:
|
17 |
html_content = f.read()
|
|
|
|
|
18 |
os.remove(report_path)
|
|
|
19 |
return html_content
|
20 |
|
21 |
def create_interface():
|
|
|
28 |
file_input = gr.File(label="Upload CSV")
|
29 |
dataset_info = gr.JSON(label="Dataset Information")
|
30 |
|
31 |
+
# Correct HTML component initialization
|
32 |
+
report_html = gr.HTML(label="Analysis Report")
|
33 |
|
34 |
def process_file(file):
|
35 |
if file is None:
|
|
|
38 |
try:
|
39 |
df = pd.read_csv(file.name)
|
40 |
|
41 |
+
# Basic dataset info
|
|
|
|
|
42 |
info = {
|
43 |
"Rows": len(df),
|
44 |
"Columns": len(df.columns),
|
|
|
50 |
# Generate Sweetviz report
|
51 |
report = analyzer.generate_sweetviz_report(df)
|
52 |
|
53 |
+
# Add custom CSS to control height
|
54 |
+
report_with_style = f"""
|
55 |
+
<div style="height: 800px; overflow: auto;">
|
56 |
+
{report}
|
57 |
+
</div>
|
58 |
+
"""
|
59 |
+
|
60 |
+
return info, report_with_style
|
61 |
|
62 |
except Exception as e:
|
63 |
return {"error": str(e)}, f"Error generating report: {str(e)}"
|
|
|
73 |
if __name__ == "__main__":
|
74 |
demo = create_interface()
|
75 |
demo.launch(
|
|
|
76 |
show_error=True
|
77 |
)
|