I'm trying to import a text file into R which has several columns separated by several spaces. It also contains words which are also separated by spaces. I've tried a lot with the read.table() command. When I use sep = "" R recognises the columns but places each word in a separate column. I could combine these columns but different rows contain a different amounts of words. Example of a row in the text file:
123A456B789C0 RADIO PANEL 95-17 AB123 0 1
0987AB654321C ALTIMETER 12-34 123AB 1 2
1234567890ABC LIGHT SENSOR BACK 78-45 ABC12 0 1
How can I fix this?