Python pandas Filtering out nan from a data selection of a column of strings

前端 未结 4 779
别那么骄傲
别那么骄傲 2020-11-30 17:18

Without using groupby how would I filter out data without NaN?

Let say I have a matrix where customers will fill in \'N/A\',\'n/a\'

4条回答
  •  -上瘾入骨i
    2020-11-30 17:58

    Just drop them:

    nms.dropna(thresh=2)
    

    this will drop all rows where there are at least two non-NaN.

    Then you could then drop where name is NaN:

    In [87]:
    
    nms
    Out[87]:
      movie    name  rating
    0   thg    John       3
    1   thg     NaN       4
    3   mol  Graham     NaN
    4   lob     NaN     NaN
    5   lob     NaN     NaN
    
    [5 rows x 3 columns]
    In [89]:
    
    nms = nms.dropna(thresh=2)
    In [90]:
    
    nms[nms.name.notnull()]
    Out[90]:
      movie    name  rating
    0   thg    John       3
    3   mol  Graham     NaN
    
    [2 rows x 3 columns]
    

    EDIT

    Actually looking at what you originally want you can do just this without the dropna call:

    nms[nms.name.notnull()]
    

    UPDATE

    Looking at this question 3 years later, there is a mistake, firstly thresh arg looks for at least n non-NaN values so in fact the output should be:

    In [4]:
    nms.dropna(thresh=2)
    
    Out[4]:
      movie    name  rating
    0   thg    John     3.0
    1   thg     NaN     4.0
    3   mol  Graham     NaN
    

    It's possible that I was either mistaken 3 years ago or that the version of pandas I was running had a bug, both scenarios are entirely possible.

提交回复
热议问题