Learn practical skills, build real-world projects, and advance your career
project_name = "indian-food-data-analysis"
#to prepare and clean this dataset for use, null data will be removed
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
indian_food = pd.read_csv('indian_food.csv')
indian_food
#shape of the data
indian_food.shape
(255, 9)