Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/rating/src/main/Glicko.scala
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ case class Glicko(

case object Glicko:

val minRating = IntRating(600)
val minRating = IntRating(400)
val maxRating = IntRating(4000)

val minDeviation = 45
Expand Down
2 changes: 1 addition & 1 deletion ui/analyse/src/explorer/explorerConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Redraw } from '../interfaces';

const allSpeeds: ExplorerSpeed[] = ['ultraBullet', 'bullet', 'blitz', 'rapid', 'classical', 'correspondence'];
const allModes: ExplorerMode[] = ['casual', 'rated'];
const allRatings = [600, 1000, 1200, 1400, 1600, 1800, 2000, 2200, 2500];
const allRatings = [400, 1000, 1200, 1400, 1600, 1800, 2000, 2200, 2500];
const minYear = 1952;

type Month = string;
Expand Down
2 changes: 1 addition & 1 deletion ui/chart/src/ratingDistribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default (window as any).LichessChartRatingDistribution = async function (
const disabled = { enabled: false };
$('#rating_distribution_chart').each(function (this: HTMLElement) {
const colors = Highcharts.getOptions().colors;
const ratingAt = (i: number) => 600 + i * 25;
const ratingAt = (i: number) => 400 + i * 25;
const arraySum = (arr: number[]) => arr.reduce((a, b) => a + b, 0);
const sum = arraySum(data.freq);
const cumul = [];
Expand Down