ratings = {
let X = big_south_games.map(function (d) {
let row = d3.range(10).map((d) => 0);
row[d.idx1] = 1;
row[d.idx2] = -1;
return row;
});
let y = big_south_games.map((d) => d.score1 - d.score2);
let M = math.multiply(math.transpose(X), X);
let n = M.length;
let last_row = math.ones(1, n).toArray().flat();
M[n - 1] = last_row;
let p = math.multiply(math.transpose(X), y);
p[n - 1] = 0;
let ratings = math.lusolve(M, p).flat();
let teams_with_ratings = d3
.sort(
d3.zip(
d3
.sort(
_.uniqBy(
big_south_games.map((d) => ({ name: d.name1, idx: d.idx1 })),
(o) => o.idx
),
(o) => o.idx
)
.map((o) => o.name),
ratings
),
(a) => -a[1]
)
.map((a) => ({ team: a[0], rating: Math.round(100 * a[1]) / 100 }));
return Inputs.table(teams_with_ratings);
}