एंड-टू-एंड मशीन लर्निंग
Joshua Stapleton
Machine Learning Engineer

df.head()
# पहली 5 पंक्तियाँ प्रिंट करें
print(heart_disease_df.head())

df.info()
# विवरण प्रिंट करें
print(heart_disease_df.info())

df.value_counts()
# क्लास बैलेंस प्रिंट करें
print(heart_disease_df['target'].value_counts(normalize=True))

df.isnull() का उपयोग करें
उपयोग
# जाँचें कि क्या कॉलम के सभी मान null हैं
print(heart_disease_df['oldpeak'].isnull().all())
True
असामान्य मान
मॉडल प्रदर्शन को बिगाड़ सकते हैं
कभी-कभी उपयोगी भी:

विजुअलाइज़ेशन दिखाते हैं:
अन्य विजुअलाइज़ेशन प्रकार:
df['age'].plot(kind='hist')
plt.xlabel('Age')
plt.ylabel('Frequency')
plt.show()

डेटा समझें
Outliers पहचानें
परिकल्पनाएँ बनाएं
मान्यताएँ जाँचे
एंड-टू-एंड मशीन लर्निंग