Skip to content

Instantly share code, notes, and snippets.

View vidit0210's full-sized avatar
🎯
Focusing

Vidit Shah vidit0210

🎯
Focusing
View GitHub Profile
video Link : https://www.youtube.com/watch?v=qMEtqJPhqpA
Julien Simon
-----
import pandas as pd
data = pd.read_csv('Your CSV File')
pd.set_option('display.max_columns', 500) # Make sure we can see all of the columns
pd.set_option('display.max_rows', 50) # Keep the output on one page
data[:10]