Created
June 9, 2021 06:02
-
-
Save ParthNipunDave/900a1c7f960de6d094e8065f1c928555 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print('Number of unique values --> ',data['Pregnancies'].nunique()) | |
sns.displot(data['Pregnancies']) | |
sns.boxplot(data=data,y='Pregnancies') | |
sns.boxplot(data=data,x='Outcome',y='Pregnancies') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment