0
パンダを使用するときに1つの列のみを返しますが、私のcsvファイルがここread_csv
Country 2010 2011 2012 2013 2014
Albania 5.5 19.1 6.9 15.4 8
Algeria 18.2 6 8.1 20 9.5
American Samoa 14.1 13.8 3 14.7 2.3
Andorra 16 3 13.6 12.4 8.3
Angola 17.8 9.8 8.8 6.5 5.5
である私のコード:
import pandas as pd
test = pd.read_csv('C:\\Users\\Wing\\Desktop\\TEST.csv',sep='\t')
print(test.head())
print(test.shape)
print(test.columns)
print(test.dtypes)
出力:
the print test.shape command will output (14,1)
the print test.columns command will output(Index(['Country,2010,2011,2012,2013,2014'], dtype='object')
ので、私はそれらを分離する方法6列
それは私 – Sebastian