rameshmoorthy commited on
Commit
f06c07a
·
verified ·
1 Parent(s): 489ab09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -10,7 +10,9 @@ def generate_report(file,type):
10
  return ydata_profiling.ProfileReport(df).to_html()
11
 
12
  elif type == "sweetviz":
13
- return sv.analyze(df).show_html()
 
 
14
 
15
 
16
 
 
10
  return ydata_profiling.ProfileReport(df).to_html()
11
 
12
  elif type == "sweetviz":
13
+ return sv.analyze(df).show_html(open_browser=True,
14
+ layout='widescreen',
15
+ scale=None)
16
 
17
 
18