Learn practical skills, build real-world projects, and advance your career
alt
# Loading necessary libraries

import os
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
df = pd.read_csv("food_order.csv")
# Checking the top 5 rows of our data
df.head()
# Checking the bottom 5 rows of our data
df.tail()