Is there a difference between read_table and read_csv in pandas?

前端 未结 3 1244
太阳男子
太阳男子 2021-02-13 11:59

I\'ve tested it and also checked the documentation with no visible differences.Either way i wanted to ask just in case.

Do you think that read_csv should be used only fo

3条回答
  •  囚心锁ツ
    2021-02-13 12:42

    Edit: Upon discussion, it was decided to keep the read_table, so this function is now undeprecated.

    If you check out ~~ the Pandas documentation for read_table:

    Deprecated since version 0.24.0.

    Use pandas.read_csv() instead, passing sep='\t' if necessary.

    So it is advised not to use read_table().

提交回复
热议问题