Created
September 9, 2020 05:09
-
-
Save deanjamesss/ce6ecd710ee7035c7b957828f7ba5aef 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
| import pandas as pd | |
| def load_csv_file(): | |
| df = pd.read_csv('getting_started_test_data.csv') | |
| print(df.info()) | |
| print(df.describe(include='all')) | |
| print(df.head(5)) | |
| if __name__ == '__main__': | |
| # Override default pandas configuration | |
| pd.options.display.width = 0 | |
| pd.options.display.max_rows = 100 | |
| pd.options.display.max_info_columns = 100 | |
| load_csv_file() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment