JUNGU commited on
Commit
fb18f50
ยท
verified ยท
1 Parent(s): debf26a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -5
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='blue', size=8),
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}\nRยฒ = {r_squared:.3f}',
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
  )