1
我有大熊貓據幀「test_df」:大熊貓數據幀:一列中創建一個從列表中的列
email my_list
[email protected] [1,9,3,5]
[email protected] [6,3,3,15]
[email protected] [7,7,2,5]
[email protected] [5,5,5,5]
我怎麼能有這樣的數據框如下(取第2 ELEM「my_list」的):
email col1 col2
[email protected] 1 9
[email protected] 6 3
[email protected] 7 7
[email protected] 5 5
我想:
test_df['col1'] = test_df['my_list'][0]
test_df['col2'] = test_df['my_list'][1]
但它不工作
'my_list'的元素類型是什麼? IOW,'type(test_df.my_list [0])'返回的是什麼? – DSM
感謝您的回答@DSM類型(test_df.my_list [0]) –
woshitom