Update app.py
Browse files
app.py
CHANGED
|
@@ -147,7 +147,7 @@ def server(input, output, session):
|
|
| 147 |
|
| 148 |
df_spring = pl.concat([df_spring, df]).sort('game_date', descending=True)
|
| 149 |
|
| 150 |
-
return df_spring
|
| 151 |
|
| 152 |
@reactive.Calc
|
| 153 |
def ts_data():
|
|
|
|
| 147 |
|
| 148 |
df_spring = pl.concat([df_spring, df]).sort('game_date', descending=True)
|
| 149 |
|
| 150 |
+
return df_spring.filter(pl.col('start_speed')>0)
|
| 151 |
|
| 152 |
@reactive.Calc
|
| 153 |
def ts_data():
|