Last active
February 19, 2020 12:22
-
-
Save NataliiaRastoropova/9498457e196ca8293000ab997143b8da to your computer and use it in GitHub Desktop.
This file contains 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 | |
import seaborn as sns | |
import numpy as np | |
import matplotlib.pyplot as plot | |
df = pd.read_csv('..DataSet/CoffeeAndCodeLT2018.csv') | |
def look_at_data(dataset): | |
print(dataset.head(10)) | |
print(dataset.info()) | |
print(dataset.shape) | |
print(dataset.describe()) | |
look_at_data(df) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment