I have a dataset 1- Restaurants 2- Day , 3- busy_hours and I want to plot the dataset to show the busy hours on the graph. But due to list of numbers of busy hours its showing it but i cannot figure out the analysis with that. Because if the busy_hours column has empty hours its also showing the weighted. Can you please suggest some way for analysis of it.
Thank you
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
df = pd.read_csv("template (3).csv")
df=df.dropna()
df
plt.figure(figsize=(16,7), dpi= 80)
plt.scatter(df.Restuarants, df.busy_hours, s=250, alpha=.6)
plt.show()
DataSet image
Graph Image
CSV file