TypeError: unhashable type: ‘slice’
とエラーが出てデータフレームでスライスが使えない場合は以下のように
ilocを使う
1 2 3 4 5 6 7 8 |
train = pd.read_csv('train.csv', header = 0, dtype={'Age': np.float64}) test = pd.read_csv('test.csv' , header = 0, dtype={'Age': np.float64}) full_data = [train, test] dataset = pd.DataFrame(np.random.rand(10, 10))#random無くてもいける y=train.iloc[0::, 1::] X=train.iloc[0::, 0] |