leaderboard/plots.py [245:281]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            "High Difficulty",
            "Random",
        ],
    )
    random_line = (
        alt.Chart(format_df(random_df))
        .mark_line()
        .encode(
            x=x_scale,
            y=alt.Y("mean(value)", scale=y_scale, title="Correlation to Test Rank"),
            color=color_scale,
        )
    )
    random_band = (
        alt.Chart(format_df(random_df))
        .mark_errorband(extent="ci")
        .encode(x=x_scale, y=alt.Y("value", title="", scale=y_scale), color=color_scale)
    )

    determ_df = pd.concat([irt_df, info_df])
    irt_line = (
        alt.Chart(format_df(determ_df))
        .mark_line()
        .encode(x=x_scale, y=alt.Y("value", title="", scale=y_scale), color=color_scale)
    )
    font_size = 18
    chart = (
        (random_band + random_line + irt_line)
        .configure_axis(labelFontSize=font_size, titleFontSize=font_size)
        .configure_legend(
            labelFontSize=font_size, titleFontSize=font_size, symbolLimit=0, labelLimit=0,
        )
        .configure_header(labelFontSize=font_size)
        .configure(padding=0)
    )

    if commit:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



leaderboard/plots.py [317:353]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            "High Difficulty",
            "Random",
        ],
    )
    random_line = (
        alt.Chart(format_df(random_df))
        .mark_line()
        .encode(
            x=x_scale,
            y=alt.Y("mean(value)", scale=y_scale, title="Correlation to Test Rank"),
            color=color_scale,
        )
    )
    random_band = (
        alt.Chart(format_df(random_df))
        .mark_errorband(extent="ci")
        .encode(x=x_scale, y=alt.Y("value", title="", scale=y_scale), color=color_scale)
    )

    determ_df = pd.concat([irt_df, info_df])
    irt_line = (
        alt.Chart(format_df(determ_df))
        .mark_line()
        .encode(x=x_scale, y=alt.Y("value", title="", scale=y_scale), color=color_scale)
    )
    font_size = 18
    chart = (
        (random_band + random_line + irt_line)
        .configure_axis(labelFontSize=font_size, titleFontSize=font_size)
        .configure_legend(
            labelFontSize=font_size, titleFontSize=font_size, symbolLimit=0, labelLimit=0,
        )
        .configure_header(labelFontSize=font_size)
        .configure(padding=0)
    )

    if commit:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



