Skip to content

Commit

Permalink
small type tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
matsonj committed May 11, 2024
1 parent b3260a4 commit 72fef37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evidence/pages/nba/historical_matchups.md
Expand Up @@ -213,9 +213,9 @@ This is a 10k iteration monte carlo sim, calculated in browser using DuckDB WASM

```sql elo_by_team
select
t2.season || ' ' || t2.team as team2,
ROUND(t2.season,0)::varchar(4) || ' ' || t2.team as team2,
t2.avg_elo - ('${inputs.elo_slider}'::real/2) as elo2,
t1.season || ' ' || t1.team as team1,
ROUND(t1.season,0)::varchar(4) || ' ' || t1.team as team1,
t1.avg_elo + ('${inputs.elo_slider}'::real/2) as elo1
from ${team2_stats} t2
left join ${team1_stats} t1 ON 1=1
Expand Down

0 comments on commit 72fef37

Please sign in to comment.