1
My Python code is loading a dataset from the internet, but the same is not recognizing 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 define any other parameters?
I tried to delimiter = "\t"
but obtained the same result.
Excellent! Thank you very much.
– Arduin