Corey Morris
commited on
Commit
·
2b16774
1
Parent(s):
f52387e
Increased size of scatter plot
Browse files
app.py
CHANGED
|
@@ -217,7 +217,9 @@ def create_plot(df, x_values, y_values, models=None, title=None):
|
|
| 217 |
yaxis_title=y_values,
|
| 218 |
xaxis=dict(),
|
| 219 |
yaxis=dict(),
|
| 220 |
-
title=title
|
|
|
|
|
|
|
| 221 |
)
|
| 222 |
fig.update_layout(**layout_args)
|
| 223 |
|
|
|
|
| 217 |
yaxis_title=y_values,
|
| 218 |
xaxis=dict(),
|
| 219 |
yaxis=dict(),
|
| 220 |
+
title=title,
|
| 221 |
+
height=500,
|
| 222 |
+
width=1000,
|
| 223 |
)
|
| 224 |
fig.update_layout(**layout_args)
|
| 225 |
|