我想按所有列对数据框进行排序,然后找到一种解决方法,使用
df = df.apply( lambda x: x.sort_values())
然后我将其用于数据
text1 = text
text = text.apply( lambda x : x.sort_values())
text1 = text1.apply( lambda x : x.sort_values().values)
text.head()
text1.head()
为什么text = text.apply( lambda x : x.sort_values())
的答案不正确?.vaules)
的功能是什么?
text.head()
Wave 2881.394531 2880.574219 2879.75293 2878.931641 2878.111328
N-1 0.220934 0.203666 0.205743 0.196011 0.176293
N-10 0.432692 0.387074 0.395692 0.355331 0.358963
N-11 0.483360 0.463233 0.456304 0.428930 0.421482
N-12 0.365057 0.364417 0.385134 0.352451 0.350513
N-13 0.492172 0.466263 0.480657 0.439115 0.404883
text1.head()
Wave 2881.394531 2880.574219 2879.75293 2878.931641 2878.111328
P+1 -21.297623 -25.141329 -21.097095 -31.380476 -38.847958
P+2 -12.681051 -14.661134 -13.688742 -16.829298 -20.320133
P+3 -8.164744 -13.097990 -11.784309 -15.419610 -17.822252
P+4 -0.023353 -0.926852 -8.036203 -14.583183 -17.071484
P+5 0.022854 -0.037756 -0.002519 -1.891178 -7.795961
答案 0 :(得分:2)
默认情况下,Pandas操作align data based on their index。 所以考虑一下
In [19]: df = pd.DataFrame([(10,1),(9,2),(8,3),(7,4)], index=list('ABDC'))
In [20]: df
Out[20]:
0 1
A 10 1
B 9 2
D 8 3
C 7 4
当熊猫评估df.apply(lambda x: x.sort_values())
时,
它会生成系列:
In [24]: df[0].sort_values()
Out[24]:
C 7
D 8
B 9
A 10
Name: 0, dtype: int64
In [25]: df[1].sort_values()
Out[25]:
A 1
B 2
D 3
C 4
Name: 1, dtype: int64
,然后尝试将这两个Series组合成一个结果DataFrame。它通过对齐索引来做到这一点:
In [21]: df.apply(lambda x: x.sort_values())
Out[21]:
0 1
A 10 1
B 9 2
C 7 4
D 8 3
相反,当lambda函数返回NumPy数组时,没有索引要对齐。因此,Pandas只是将NumPy数组中的值以相同顺序粘贴到结果DataFrame中。
因此,当熊猫评估df.apply(lambda x: x.sort_values().values)
时,
它会生成NumPy数组:
In [26]: df[0].sort_values().values
Out[26]: array([ 7, 8, 9, 10])
In [27]: df[1].sort_values().values
Out[27]: array([1, 2, 3, 4])
,然后尝试将这两个NumPy数组合并为具有相同顺序值的结果DataFrame
In [28]: df.apply(lambda x: x.sort_values().values)
Out[28]:
0 1
A 7 1
B 8 2
D 9 3
C 10 4
答案 1 :(得分:0)
欢迎使用StackOverflow!
根据熊猫文档,sort_values()
返回DataFrame对象本身,而values()
返回DataFrame中值的numpy数组表示形式。由于apply()
在DataFrame的轴上应用了指定的函数,因此应用的函数必须返回该当前行/列的numpy数组表示形式,而不是返回整个DataFrame。这就是为什么当您仅使用sort_values()
时会给您错误的结果的原因。
您可以在sort_values() documentation,values() documentation和apply() documentation上阅读更完整的说明