A small variation of the original read.table that most of the time detect automatically the field separator character. It also includes the option to run the format_corrector function in order to detect, for example, the date variables included in the original data set. If the function don't recognize any separator, it asks to specify the real one.
Usage
table_import(file,sep=F,format_corrector=F,...)
Arguments
file
The patch to he file which the data are to be read from.
sep
The field separator character, see read.table.If it is not specified, the function try to detect it automatically.
format_corrector
If True, it runs the format_corrector function before returning the data frame.