Skip to content

Instantly share code, notes, and snippets.

@Emekaborisama
Created November 7, 2022 20:00
Show Gist options
  • Save Emekaborisama/c86aa15ca214de86c931acd6690d42ff to your computer and use it in GitHub Desktop.
Save Emekaborisama/c86aa15ca214de86c931acd6690d42ff to your computer and use it in GitHub Desktop.
read_data
import pandas as pd
#read csv file
train_df = pd.read_csv("train.csv")
#print the len of the dataframe
print(len(train_df))
#print the summary of the dataset
train_df.info()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment