Last active
June 9, 2021 05:24
-
-
Save ParthNipunDave/8fde05a5d26318ab6ee97ba421a60fc7 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
| data=pd.read_csv('../input/pima-indians-diabetes-database/diabetes.csv') | |
| print(data) | |
| print(data.describe()) | |
| print(data.info()) | |
| print('Number of duplicate values --> ',data.duplicated().sum()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment