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
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] |
OlderNewer