0

I want to import the following dataframe LINK.

It contains 8 columns that are separated by spaces. If I read it in with read.table(...,sep="") I have the problem that the 7th column contains names that can contain some white space as well, e.g. the third line: "Donaueschingen (Landeplatz)". Unfortunately column values are not quoted.

Is it still possible to import them?

Johannes42
  • 29
  • 4

1 Answers1

0

I think you want to use read.fwf - it allows the reading of data with fixed width columns which is what you appear to have.

James Curran
  • 1,274
  • 7
  • 23