replay-table
Version:
Visualize sport seasons with interactive standings
19 lines (18 loc) • 422 B
JavaScript
export default {
extract: {},
transform: {
transformer: 'pointsTable',
changeToOutcome: {
1: 'win',
0: 'loss'
}
},
calculate: {
orderBy: ['points']
},
visualize: {
columns: ['position', 'item', 'points', 'outcome'],
labels: ['#', 'Команда', 'Взятых'],
positionWhenTied: 'range'
}
};