UCI Mushroom Dataset
Dataset with Binary Classification
@kaggle.rinichristy_uci_mushroom_dataset
Dataset with Binary Classification
@kaggle.rinichristy_uci_mushroom_dataset
Data Set Information:
This data set includes descriptions of hypothetical samples corresponding to 23 species of gilled mushrooms in the Agaricus and Lepiota Family . Each species is identified as definitely edible, definitely poisonous, or of unknown edibility and not recommended. This latter class was combined with the poisonous one.
CREATE TABLE mushroom_data (
"mushroom_quality" VARCHAR,
"cap_shape" VARCHAR,
"cap_surface" VARCHAR,
"cap_color" VARCHAR,
"bruises" VARCHAR,
"odor" VARCHAR,
"gill_attachment" VARCHAR,
"gill_spacing" VARCHAR,
"gill_size" VARCHAR,
"gill_color" VARCHAR,
"stalkshape" VARCHAR,
"stalk_root" VARCHAR,
"stalk_surface_above_ring" VARCHAR,
"stalk_surface_below_ring" VARCHAR,
"stalk_color_above_ring" VARCHAR,
"stalk_color_below_ring" VARCHAR,
"veil_type" VARCHAR,
"veil_color" VARCHAR,
"ring_number" VARCHAR,
"ring_type" VARCHAR,
"spore_print_color" VARCHAR,
"population" VARCHAR,
"habitat" VARCHAR
);
Anyone who has the link will be able to view this.