Tennis Racquets And Strings Dataset
Comprehensive dataset of tennis racket and strings
@kaggle.lukebatten17_tennis_racquets_and_strings_dataset
Comprehensive dataset of tennis racket and strings
@kaggle.lukebatten17_tennis_racquets_and_strings_dataset
This dataset contains tennis racquets and strings, including information about their brands and models. It is designed to help tennis enthusiasts, players, and researchers access an extensive list of different racquets and strings available in the market.
The dataset is divided into two parts: Racquets and Strings. The Racquets consist of over 1300 racquets and the strings consist of over 750 different models.
I also provided a version in relational format.
Both parts are provided in CSV format.
This dataset will be updated when new models come out, and I also have the time.
| Description | |
|---|---|
| racquet_brands | The manufacturer of the racquet. |
| racquet_models | The model name of the racquet. |
| Description | |
|---|---|
| string_brand | The manufacturer of the string. |
| string_model | The model name of the string. |
| string_type | The material type of the string (e.g., Nylon, Polyester). |
CREATE TABLE racquets (
"brand" VARCHAR,
"model" VARCHAR
);CREATE TABLE strings (
"string_brand" VARCHAR,
"string" VARCHAR,
"type" VARCHAR
);Anyone who has the link will be able to view this.