As there are multiple array in one X_train and Y_Train how to plot them as i am getting an array of 1-size array to scalar python
UNABLE TO DRAW THA BAR GRAPH
Hey @YashSINGHAI, 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. 