它看起来像这样:

      Dates  N-D  unit
0  1/1/2016  Q1   UD
1            Q2   UD
2            Q3   UD
3  2/1/2016  Q4   UD
4  5/1/2016  Q5   UD
5            Q6   UD

我想过滤出空的Dates行并将其保存在数据框blankDate中:
      Dates  N-D  unit
1            Q2   UD
2            Q3   UD
5            Q6   UD


 blankDate=df1[df1['Dates']== '']  #this didn't work
 df1['Discharge Date'] = pd.to_datetime(df1['Discharge Date']) #then I converted the column to date format but still doesn't work

如果该列是字符串,则这段代码有效,它也适用于我认为的数字
blankDate=df1[df1['stringcolumn']== '']

但是如何与空日期行进行比较?

最佳答案

一种方法是用nan替换空单元格,然后使用isull()

df.Dates = df.Dates.replace('', np.nan)
blankDate = df[df.Dates.isnull()]

10-08 00:46