Skip to content

Commit

Permalink
fix nfl team page
Browse files Browse the repository at this point in the history
  • Loading branch information
matsonj committed Mar 2, 2024
1 parent c394533 commit 9904064
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions evidence/pages/nfl/teams/[nfl_teams].md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ queries:
- elo_latest: nfl/elo_latest.sql
- most_recent_games: nfl/most_recent_games.sql
- game_trend: nfl/game_trend.sql
- future_games: nfl/future_games.sql
---

# Detailed Analysis for <Value data={all_teams.filter(d => d.team.toUpperCase() === $page.params.nfl_teams.toUpperCase())} column=team/>
Expand Down Expand Up @@ -89,21 +88,6 @@ GROUP BY ALL
rows=12
/>

### Future Games

<DataTable
data={future_games.filter(d => d.home_team.toUpperCase() === $page.params.nfl_teams.toUpperCase() | d.visiting_team.toUpperCase() === $page.params.nfl_teams.toUpperCase())}
title='Predictions'
rows=25
rowShading="true"
rowLine="false">
<Column id="visitor"/>
<Column id="home"/>
<Column id="home_win_pct1"/>
<Column id="odds" align="right"/>
<Column id="implied_line_num1" align="right"/>
</DataTable>

### Playoff Odds

<BigValue
Expand Down

0 comments on commit 9904064

Please sign in to comment.