I am currently trying to have my .csv imported in Python via Pandas. Some of the data properly shows up, but it's only the first 5 rows and then the last 5 rows.
I have about 3,000 rows that I want to show up, but cannot find a viable solution.
I am linking a screenshot and there is a copy of my code too. Thanks for the help! Output of running code
import pandas as pd
data = pd.read_csv("ChicagoCrime2001.csv")
df = pd.DataFrame(data, columns= ['Block', 'Primary Type'])
print(df)