Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -192,17 +192,20 @@ def plot_scatter_with_regression(data, x_var, y_var):
|
|
192 |
# ๊ทธ๋ํ ์์ฑ
|
193 |
fig = go.Figure()
|
194 |
|
195 |
-
# ์ฐ์ ๋ ์ถ๊ฐ
|
196 |
fig.add_trace(go.Scatter(
|
197 |
x=x,
|
198 |
y=y,
|
199 |
mode='markers',
|
200 |
name='Data Points',
|
201 |
-
marker=dict(color='
|
202 |
error_y=dict(
|
203 |
type='data',
|
204 |
array=abs(residuals),
|
205 |
-
visible=True
|
|
|
|
|
|
|
206 |
)
|
207 |
))
|
208 |
|
@@ -228,9 +231,11 @@ def plot_scatter_with_regression(data, x_var, y_var):
|
|
228 |
y=0.95,
|
229 |
xref='paper',
|
230 |
yref='paper',
|
231 |
-
text=f'y = {slope:.2f}x + {intercept:.2f}
|
232 |
showarrow=False,
|
233 |
-
bgcolor='rgba(255, 255, 255, 0.8)'
|
|
|
|
|
234 |
)
|
235 |
]
|
236 |
)
|
|
|
192 |
# ๊ทธ๋ํ ์์ฑ
|
193 |
fig = go.Figure()
|
194 |
|
195 |
+
# ์ฐ์ ๋ ์ถ๊ฐ (์ค์ฐจ ๋ง๋ ํฌํจ)
|
196 |
fig.add_trace(go.Scatter(
|
197 |
x=x,
|
198 |
y=y,
|
199 |
mode='markers',
|
200 |
name='Data Points',
|
201 |
+
marker=dict(color='rgba(0, 0, 255, 0.7)', size=10),
|
202 |
error_y=dict(
|
203 |
type='data',
|
204 |
array=abs(residuals),
|
205 |
+
visible=True,
|
206 |
+
color='rgba(0, 0, 0, 0.1)',
|
207 |
+
thickness=0.5,
|
208 |
+
width=0
|
209 |
)
|
210 |
))
|
211 |
|
|
|
231 |
y=0.95,
|
232 |
xref='paper',
|
233 |
yref='paper',
|
234 |
+
text=f'y = {slope:.2f}x + {intercept:.2f}<br>Rยฒ = {r_squared:.3f}',
|
235 |
showarrow=False,
|
236 |
+
bgcolor='rgba(255, 255, 255, 0.8)',
|
237 |
+
bordercolor='rgba(0, 0, 0, 0.3)',
|
238 |
+
borderwidth=1
|
239 |
)
|
240 |
]
|
241 |
)
|