使用列标题将数据帧转换为数组

时间:2018-10-02 06:01:43

标签: python arrays pandas numpy

我想转换一个数据框:

enter image description here

在不丢失标题列的情况下进行排列:

enter image description here

我尝试了值:

enter image description here

但不知道如何保留列标题,因此我可以调用它以备后用。如何使用熊猫呢?

data = data.values
array([[True, 33],
   [True, 32],
   [True, 31],
   ...,
   [True, 2],
   [True, 0],
   [True, 0]], dtype=object)

1 个答案:

答案 0 :(得分:0)

您正在寻找的是一种将DataFrame转换为结构化数组的方法,您可以在此处的问题Converting pandas dataframe to structured arrays

中找到执行此操作的说明