read.csv vs. read.table

前端 未结 3 2016
栀梦
栀梦 2021-02-07 05:00

I have seen in several cases that while read.table() is not able to read a tab delimited file (for example the annotation table of a microarray) returning the follo

3条回答
  •  误落风尘
    2021-02-07 05:49

    Don't use read.table to read tab-delimited files, use read.delim. (It is just a thin wrapper around read.table but it sets the options to appropriate values)

提交回复
热议问题