Last active
October 15, 2022 23:45
-
-
Save rsalaza4/f3453915ad03e3f39116bdcab750b64a 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 libraries and dependencies | |
| import pandas as pd | |
| import datetime | |
| import matplotlib.pyplot as plt | |
| %matplotlib inline | |
| # Read employees csv file | |
| df = pd.read_csv("employees.csv") | |
| # Display top rows | |
| df.head() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment