Skip to content
Prev 312267 / 398506 Next

Speeding reading of large file

An interesting approach -- I lose the column names (which I need) but I could get them with something cute such as:
	1.  read the first few lines only with readLines(FILENAME, n=10)
	2.  use your approach to read.table -- this will grab the column names
	3.  replace the headers in the full version with the correct column names

Dennis Fisher MD
P < (The "P Less Than" Company)
Phone: 1-866-PLessThan (1-866-753-7784)
Fax: 1-866-PLessThan (1-866-753-7784)
www.PLessThan.com
On Nov 28, 2012, at 11:32 AM, David L Carlson wrote: