Pandas Convert 'NA' to NaN

后端 未结 2 932
迷失自我
迷失自我 2021-01-17 11:02

I just picked up Pandas to do with some data analysis work in my biology research. Turns out one of the proteins I\'m analyzing is called \'NA\'.

I have a matrix wit

2条回答
  •  旧时难觅i
    2021-01-17 11:36

    Turn off NaN detection this way: pd.read_csv(filename, keep_default_na=False)

    I originally suggested na_filter=False, which gets the job done. But, if I understand Jeff's comments below, this is a cleaner solution.

    Example:

    In [1]: pd.read_csv('test')
    Out[1]:[4]: pd.read_csv('test', keep_default_na=False)
    Out[4]:1   2
    2   3
    

提交回复
热议问题