Cricket Player Ratings
Interactive cricket batting and bowling ratings table
Last updated: 19 February 2026
Interactive table of cricket player ELO ratings. Click column headers to sort; use the search box to find players.
Batting Ratings
Show code
data_path <- here::here("data", "bouncer_batting.csv")
if (file.exists(data_path)) {
batting <- read.csv(data_path)
inthegame_table(batting)
} else {
htmltools::p(
class = "text-muted",
"Batting ratings data will be available once the automated data pipeline runs."
)
}Batting ratings data will be available once the automated data pipeline runs.
Bowling Ratings
Show code
data_path <- here::here("data", "bouncer_bowling.csv")
if (file.exists(data_path)) {
bowling <- read.csv(data_path)
inthegame_table(bowling)
} else {
htmltools::p(
class = "text-muted",
"Bowling ratings data will be available once the automated data pipeline runs."
)
}Bowling ratings data will be available once the automated data pipeline runs.