Most Wickets In Test Cricket History
Leading wicket takers in Test Cricket History
@kaggle.anubhavgoyal10_most_wickets_in_test_cricket_history
Leading wicket takers in Test Cricket History
@kaggle.anubhavgoyal10_most_wickets_in_test_cricket_history
This dataset contains various stats of players who are leading wicket-takers in Test Cricket History
This file contains 15 attributes with the following descriptions:
| Feature | Description |
|---|---|
| Rank | Ranking of the player based on the number of wickets taken |
| Player | Name of the Player |
| Country | The country for which the player plays |
| Career Span | For how many years did the player play Test Cricket? |
| Matches | Number of matches played. |
| Innings | Number of innings played |
| Balls | Number of balls bowled |
| Runs | Number of runs given |
| Wickets | Number of wickets taken |
| Average | How many runs does the bowler gives per wicket taken |
| Economy | On average, how many runs does the bowler give in an over |
| Strike Rate | How many bowls bowled per wicket taken |
| 5 | Number of times the player took 5 wickets in a match |
| 10 | Number of times the player took 10 wickets in a match |
| Best figures | Best figures of the bowler |
CREATE TABLE test_wickets (
"rank" BIGINT,
"player" VARCHAR,
"country" VARCHAR,
"career_span" BIGINT,
"matches" BIGINT,
"innings" BIGINT,
"balls" BIGINT,
"runs" BIGINT,
"wickets" BIGINT,
"average" DOUBLE,
"economy" DOUBLE,
"strike_rate" DOUBLE,
"n_5" BIGINT -- 5,
"n_10" BIGINT -- 10,
"best_figures" VARCHAR
);Anyone who has the link will be able to view this.