I have tried to fetch data from the web (a csv file) using Pandas in Jupyter Notebook:
import pandas as pd
df1 = pd.read_csv("https://www.crowdflower.com/wp-content/uploads/2016/03/gender-classifier-DFE-791531.csv")
The first time I get the following error:
IncompleteRead: IncompleteRead(5738795 bytes read, 2437944 more expected)
I try it again in a different cell in jupyter notebook and get another error:
URLError:
I try a third time and Jupyter Notebook keeps hanging for ages
Any idea what these two errors means (what is pandas trying to tell me, what happened), and how to fix them?
df1 = pd.read_csv("https://www.crowdflower.com/wp-content/uploads/2016/03/gender-classifier-DFE-791531.csv", encoding='latin')).