在Python中重塑附加列表 - 将列表拆分为列

时间:2015-10-13 17:31:03

标签: python list reshape

我想将下面的列表更改为2d数组。列表/数组形状经常让我困惑,我希望数据格式为y = 14.96,22.17,...和x = 15.25,25.36,... final_array = [x,y],那么它会更容易绘图。

[[14.96786030991488, 15.26],
 [22.170739257927302, 25.366999999999997],
 [32.07129009546086, 39.536000000000001],
 [53.91092877753442, 59.655000000000001],
 [90.1398030963187, 89.387],
 [117.33864311518501, 119.70999999999999],
 [123.99886910884739, 155.13999999999999],
 [220.35978335270883, 241.97],
 [246.1408069941774, 281.25],
 [275.5098457739598, 312.33999999999997],
 [326.2608566528128, 365.13],
 [399.24680126783164, 415.20999999999998]]

到目前为止尝试了这个:

np.reshape(mean_plain,[12,2])

1 个答案:

答案 0 :(得分:2)

您需要转置将元组映射到列表的原始列表列表:

 l = list(map(list,zip(*l)))

如果您正在使用numpy,只需创建一个数组:

l =  np.array(list(map(list,zip(*l))))

你想要的形状是2, 12,这正是压缩列表上的调用数组会给你的。