My Python code is loading an internet dataset, but it does not recognize the columnar number of the data.
Python code:
import pandas as pd
##Importando dados
data = pd.read_table('https://archive.ics.uci.edu/ml/machine-learning-databases/auto-mpg/auto-mpg.data', header=1)
print(len(data.columns))
2
Do I need to set any other parameters?
I tried delimiter = "\t"
but got the same result.