A simple way to store big data sets is to use CSV files (comma separated files).
CSV files contains plain text and is a well know format that can be read by everyone including Pandas.
In our examples we will be using a CSV file called 'data.csv'.
Download data.csv. or Open data.csv
Load the CSV into a DataFrame:
import pandas as pd
df = pd.read_csv('data.csv')
print(df.to_string())
Try it Yourself »
Tip: use to_string()
to print the entire DataFrame.
If you have a large DataFrame with many rows, Pandas will only return the first 5 rows, and the last 5 rows:
Print the DataFrame without the to_string()
method:
import pandas as pd
df = pd.read_csv('data.csv')
print(df)
Try it Yourself »
The number of rows returned is defined in Pandas option settings.
You can check your system's maximum rows with the pd.options.display.max_rows
statement.
Check the number of maximum returned rows:
import pandas as pd
print(pd.options.display.max_rows)
Try it Yourself »
In my system the number is 60, which means that if the DataFrame contains more than 60 rows, the print(df)
statement will return only the headers and the first and last 5 rows.
You can change the maximum rows number with the same statement.
Increase the maximum number of rows to display the entire DataFrame:
import pandas as pd
pd.options.display.max_rows = 9999
df = pd.read_csv('data.csv')
print(df)
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!