What is the right way to parse this into a two column dataframe? If I split based on spaces it splits too many times, but if I don't split at all everything stays in one column. Would I have to download it with one line, then split on the first space via regex, or is there a better method?
item.ids<-read.csv("http://eve-files.com/chribba/typeid.txt",sep =' ',header=F)
View(item.ids)