how to plot the bar graph
How to plot the bar graph
Hey @Sickoffailure, you could do it like this,
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
ydata = pd.read_csv("./Training Data/Diabetes_YTrain.csv")
temp = np.unique(ydata,return_counts = True)
plt.bar(x = temp[0],height = temp[1],width=0.5)
Hope this resolved your doubt.
Plz mark the doubt as resolved in my doubts section. 
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.