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
Edit: Upon discussion, it was decided to keep the read_table, so this function is now undeprecated.
read_table
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.
Deprecated since version 0.24.0.
Use pandas.read_csv() instead, passing sep='\t' if necessary.
pandas.read_csv()
sep='\t'
So it is advised not to use read_table().
read_table()