将数据从数组重塑为表,例如

时间:2018-07-19 14:42:17

标签: python pandas numpy

我需要将数据集从数组的数组重塑到表之类的

原始:

table_data = [
    ['header_1', 12, 23, 34, 45, 56, 99, 100],
    ['header_2', 1, 2, 3, 4, 5, 6, 10],
    ['header_3', 999, 888, 777, 666, 555, 444, 333],
]

预期:

table_data = [
    ['header_1', 'header_2', 'header_3'],
    [12, 1, 999],
    [23, 2, 888],
    [34, 3, 777],
    [45, 4, 666],
    [56, 5, 555],
    [99, 6, 444],
    [100, 10, 333],
]

0 个答案:

没有答案