Adi*_*ran 4 python sorting numpy pandas
我正在尝试对 Pandas 数据框进行排序,NaT 值位于顶部。我正在使用 df.sort_values 函数:
df=df.sort_values(by='date_of_last_hoorah_given')
Run Code Online (Sandbox Code Playgroud)
它工作正常,我得到了一个底部带有 NaT 值的排序数据框
date_of_last_hoorah_given email first_name \
16 2016-12-19 07:36:08.000000 mindy.lyndi@hoorah.io Mindy
29 2016-12-19 07:36:08.000000 judi.seward@hoorah.io Judi
7 2016-12-19 07:36:08.000000 chao.an@hoorah.io Chao
21 2016-12-19 07:36:08.000000 bala.harish@hoorah.io Bala
12 2016-12-19 07:36:08.000000 pushpa.swaran@hoorah.io Pushpa
30 2016-12-22 07:36:08.000000 sparrow.freespirit@hoorah.io Sparrow
28 2016-12-22 07:36:08.000000 sanjeev.prasanna@hoorah.io Sanjeev
27 2016-12-22 07:36:08.000000 twinklenose.snowleaf@hoorah.io Twinklenose
25 2016-12-22 07:36:08.000000 sweetgaze.sugarshy@hoorah.io Sweetgaze
23 2016-12-22 07:36:08.000000 shreya.sarika@hoorah.io Shreya
19 2016-12-22 07:36:08.000000 jiahao.dong@hoorah.io Jiahao
15 2016-12-22 07:36:08.000000 jannine.tyson@hoorah.io Janine
14 2016-12-22 07:36:08.000000 arlo.reed@hoorah.io Arlo
0 2016-12-22 07:36:08.000000 aditya.hariharan@hoorah.io Aditya
11 2016-12-22 07:36:08.000000 shirley.madalitso@hoorah.io Shirley
2 2016-12-22 07:36:08.000000 minerva.jena@hoorah.io Minerva
3 2016-12-22 07:36:08.000000 colby.brandi@hoorah.io Colby
13 2016-12-22 07:36:08.000000 beverly.cohen@hoorah.io Beverly
6 2016-12-22 07:36:08.000000 guanting.jun@hoorah.io Guanting
5 2016-12-22 07:36:08.000000 chen.tu@hoorah.io Chen
18 2016-12-22 10:55:03.474683 fen.lin@hoorah.io Fen
9 2016-12-23 07:36:08.000000 kourtney.pam@hoorah.io Kourtney
10 2016-12-23 14:30:55.206581 kailee.alfie@hoorah.io Kailee
4 2016-12-24 07:36:08.000000 jing.chao@hoorah.io Jing
31 2016-12-24 16:02:28.945809 rich.oswin@hoorah.io Rich
24 2016-12-25 07:36:08.000000 ganesh.vasanta@hoorah.io Ganesh
8 2016-12-26 07:36:08.000000 xia.yaling@hoorah.io Xia
20 2016-12-27 07:36:08.000000 kinley.joan@hoorah.io Kinley
22 2016-12-28 07:36:08.000000 honeygleam.dazzlesmile@hoorah.io Honeygleam
26 2016-12-28 15:29:48.629929 indira.padma@hoorah.io Indira
17 2016-12-29 02:27:11.125078 ileen.gaynor@hoorah.io Ileen
32 2016-12-29 15:38:02.335296 ragnar.lestat@hoorah.io Ragnar
1 NaT flitterbeam.clovergaze@hoorah.com Flitterbeam
Run Code Online (Sandbox Code Playgroud)
但是当我尝试使用以下代码将其置于顶部时:
df=df.sort_values(by='date_of_last_hoorah_given',ascending=[1,0])
Run Code Online (Sandbox Code Playgroud)
我收到一个 valueError: Length of ascending (2) != length of by (1) 完整堆栈跟踪如下:
ValueError Traceback (most recent call last)
<ipython-input-107-948a8354aeeb> in <module>()
1 cd = ClientData(1)
----> 2 cd.get_inactive_users()
<ipython-input-106-ed230054ea86> in get_inactive_users(self)
346 inactive_users_result.append(user_dict)
347 df=pd.DataFrame(inactive_users_result)
--> 348 df=df.sort_values(by='date_of_last_hoorah_given',ascending=[1,0])
349 print(df)
C:\Users\aditya\Anaconda3\lib\site-packages\pandas\core\frame.py in sort_values(self, by, axis, ascending, inplace, kind, na_position)
3126 if com.is_sequence(ascending) and len(by) != len(ascending):
3127 raise ValueError('Length of ascending (%d) != length of by (%d)' %
-> 3128 (len(ascending), len(by)))
3129 if len(by) > 1:
3130 from pandas.core.groupby import _lexsort_indexer
ValueError: Length of ascending (2) != length of by (1)
Run Code Online (Sandbox Code Playgroud)
问题是NaT排序时它是最大的,因此总是排在最后。为了在放在NaT前面或顶部时按升序日期排序,您需要使用两个条件进行排序。
np.lexsort将按任意数量的条件对数组进行排序并返回类似于以下的排序切片np.argsort
另请注意,我会将notnull条件放在传递给 的条件数组的最后np.lexsort。 np.lexsort首先对最后一个元素进行排序...我不知道为什么,但事实就是这样。
所以我们应该首先排序df.date_of_last_hoorah_given.notnull(),因为那些不为空的值将True大于False排序上下文中的值。然后我们可以按其余日期排序。
dates = df.date_of_last_hoorah_given
sort_slice = np.lexsort([dates.values, dates.notnull().values])
df.iloc[sort_slice]
Run Code Online (Sandbox Code Playgroud)
或者!正如OP在评论中所说,这给出了同样的事情并且更加直接
df.sort_values('date_of_last_hoorah_given', na_position='first')
date_of_last_hoorah_given email first_name
1 NaT flitterbeam.clovergaze@hoorah.com Flitterbeam
16 2016-12-19 07:36:08.000000 mindy.lyndi@hoorah.io Mindy
29 2016-12-19 07:36:08.000000 judi.seward@hoorah.io Judi
7 2016-12-19 07:36:08.000000 chao.an@hoorah.io Chao
21 2016-12-19 07:36:08.000000 bala.harish@hoorah.io Bala
12 2016-12-19 07:36:08.000000 pushpa.swaran@hoorah.io Pushpa
30 2016-12-22 07:36:08.000000 sparrow.freespirit@hoorah.io Sparrow
28 2016-12-22 07:36:08.000000 sanjeev.prasanna@hoorah.io Sanjeev
27 2016-12-22 07:36:08.000000 twinklenose.snowleaf@hoorah.io Twinklenose
25 2016-12-22 07:36:08.000000 sweetgaze.sugarshy@hoorah.io Sweetgaze
23 2016-12-22 07:36:08.000000 shreya.sarika@hoorah.io Shreya
19 2016-12-22 07:36:08.000000 jiahao.dong@hoorah.io Jiahao
15 2016-12-22 07:36:08.000000 jannine.tyson@hoorah.io Janine
14 2016-12-22 07:36:08.000000 arlo.reed@hoorah.io Arlo
0 2016-12-22 07:36:08.000000 aditya.hariharan@hoorah.io Aditya
11 2016-12-22 07:36:08.000000 shirley.madalitso@hoorah.io Shirley
2 2016-12-22 07:36:08.000000 minerva.jena@hoorah.io Minerva
3 2016-12-22 07:36:08.000000 colby.brandi@hoorah.io Colby
13 2016-12-22 07:36:08.000000 beverly.cohen@hoorah.io Beverly
6 2016-12-22 07:36:08.000000 guanting.jun@hoorah.io Guanting
5 2016-12-22 07:36:08.000000 chen.tu@hoorah.io Chen
18 2016-12-22 10:55:03.474683 fen.lin@hoorah.io Fen
9 2016-12-23 07:36:08.000000 kourtney.pam@hoorah.io Kourtney
10 2016-12-23 14:30:55.206581 kailee.alfie@hoorah.io Kailee
4 2016-12-24 07:36:08.000000 jing.chao@hoorah.io Jing
31 2016-12-24 16:02:28.945809 rich.oswin@hoorah.io Rich
24 2016-12-25 07:36:08.000000 ganesh.vasanta@hoorah.io Ganesh
8 2016-12-26 07:36:08.000000 xia.yaling@hoorah.io Xia
20 2016-12-27 07:36:08.000000 kinley.joan@hoorah.io Kinley
22 2016-12-28 07:36:08.000000 honeygleam.dazzlesmile@hoorah.io Honeygleam
26 2016-12-28 15:29:48.629929 indira.padma@hoorah.io Indira
17 2016-12-29 02:27:11.125078 ileen.gaynor@hoorah.io Ileen
32 2016-12-29 15:38:02.335296 ragnar.lestat@hoorah.io Ragnar
Run Code Online (Sandbox Code Playgroud)