df = pd.read_csv('data.csv')
import pandas as pd
cereal_df = pd.read_csv("/tmp/tmp07wuam09/data/cereal.csv")
cereal_df2 = pd.read_csv("data/cereal.csv")
# Are they the same?
print(pd.DataFrame.equals(cereal_df, cereal_df2))
import pandas as pd
df = pd.read_csv('../examples/example_wp_log_peyton_manning.csv')
df.head()
pd.read_csv('file.csv', delimiter=' ')
df = pd.read_csv("filename.csv", encoding="some_encoding")
pd.read_csv('data.csv') # doctest: +SKIP
df = pd.read_csv("name.csv")
>>> pd.read_csv('data.csv')
pandas.read_csv("file.csv")
# Testing adding answer to grepper
df = pd.read_csv(r'your csv file path or directoryfile_name.csv')