我想这很简单,但在过去的一个小时左右让我感到沮丧......我想使用带有标题的 NORMAL numpy 数组(不是记录数组):例如(参见http://docs.scipy.org/doc /numpy/reference/generated/numpy.array.html )
x = np.array([(1,2),(3,4)],dtype=[('a','<f4'),('b','<f4')])
但是我有一个常规的非列 numpy 数组,例如
x = np.array([(1,2),(3,4)])
和一个名字列表,例如
names = ['a','b']
如何将titled less x 和names to ax 与标题结合起来?