Fish Species Sampling Data - Legnth And Weight
Synthetic data, Multi-classification, Clustering
@kaggle.taweilo_fish_species_sampling_weight_and_height_data
Synthetic data, Multi-classification, Clustering
@kaggle.taweilo_fish_species_sampling_weight_and_height_data
Synthetic data generated and inspired from the paper: Length-weight relationships of nine fish species from the Tetulia River, southern Bangladesh: https://www.researchgate.net/figure/Descriptive-statistics-and-estimated-length-weight-relationship-W-aL-b-W-in-g-and-L_tbl1_280916140
species: species name
length: length (cm)
weight: weight (g)
w_l_ratio: weight / length
Exploratory Data Analysis (EDA): Understand the distributions, relationships, and patterns within the data.
Classification: Predict the species based on height and length, W/L ratio
CREATE TABLE fish_data (
"species" VARCHAR,
"length" DOUBLE,
"weight" DOUBLE,
"w_l_ratio" DOUBLE
);Anyone who has the link will be able to view this.