Learn practical skills, build real-world projects, and advance your career

Exploratory Data Analysis on Indian Cusines

This notebook visualises the the cousines of India. Below are the basic visualization that have been performed in seaborn. The data has been taken from Kaggle dataset link

A brief description of the data:

  • name : name of the dish
  • ingredients : what main ingredients are present
  • diet : type of diet - either vegetarian or non vegetarian
  • prep_time : total time taken for preparation
  • cook_time : total time taken for cooking
  • flavor_profile : category: spicy, sweet, bitter, etc
  • course : category: starter, main course, dessert, etc
  • state : state of origin
  • region : region of origin

Jovian Saving

import jovian
project_name = "eda-indian-cousine" 
jovian.commit(project=project_name)
[jovian] Detected Colab notebook... [jovian] Please enter your API key ( from https://jovian.ai/ ): API KEY:

Mounting the google drive

from google.colab import drive
drive.mount('/content/drive')
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).