Displaying 1 result from an estimated 1 matches for "germany_".
Did you mean:
germany
2002 Jun 06
1
Dealing with data of varying format
...n you could simply create variables of lengths 3, 13, 27, 24, and 15 and
the data would be read in properly. For instance, the third line above would
be read into 5 variables as demonstrated below, with underscores representing spaces:
A_ _
823109_ _ _ _ _ _ _
METEOR_(POST_/64)_ _ _ _ _ _ _ _ _ _
GERMANY_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
unknown_ _ _ _ _ _ _ _
Is there anything in R that would do something similar? Ideally I'd like to read the header files into data frames but realize this may not be entirely possible
if I need to define the length of the elements to be read in. So I'm wil...