Baselight

Fruit Consumption Habits

Analyzing the Sweet Symphony: Exploring Kaggle's Fruit Consumption Dataset

@kaggle.zain280_fruit_consumption_habits

Fruits Consumptions Habits
@kaggle.zain280_fruit_consumption_habits.fruits_consumptions_habits

  • 13.7 KB
  • 1438 rows
  • 7 columns
id

ID

age

Age

gender

Gender

country

Country

favorite_fruit

Favorite Fruit

frequency_of_consumption

Frequency Of Consumption

preferred_form_of_fruit

Preferred Form Of Fruit

132MaleUSAAppleDailyFresh
245FemaleCanadaBanana2-3 times a weekSmoothie
328MaleUKOrangeOnce a weekJuice
450FemaleAustraliaMangoDailyFresh
519FemaleGermanyStrawberry4-5 times a weekSalad
639MaleFranceApple2-3 times a weekFresh
756FemaleUSABananaOnce a weekSmoothie
822FemaleCanadaOrange3-4 times a weekJuice
941MaleUKMangoDailyFresh
1030FemaleAustraliaStrawberryOnce a weekSmoothie

CREATE TABLE fruits_consumptions_habits (
  "id" BIGINT,
  "age" BIGINT,
  "gender" VARCHAR,
  "country" VARCHAR,
  "favorite_fruit" VARCHAR,
  "frequency_of_consumption" VARCHAR,
  "preferred_form_of_fruit" VARCHAR
);

Share link

Anyone who has the link will be able to view this.