I am trying to webscrape an OECD table with R.
library(XML)
OECD <- readHTMLTable('http://stats.oecd.org/Index.aspx?DataSetCode=MEI_CLI')
OECD<- data.frame(rawOECD[[1]])
I have managed to get the basic table with the above code but I am having trouble getting it into a presentable form.
I would be grateful for your help.
Kind regards,
Adam
How about this?