library(knitr) library(doBy) library(xtable) library(ggplot2) #load dataset dir <- url("http://www.trutschnig.net/RTR.RData") load(dir) head(RTR) summary(RTR) p <- ggplot(data=RTR,aes(x=long,y=lat)) p <- p + geom_point(size=0.3) p <- p + theme_bw() p #for adding the info in the region use the following lines and 'merge' dir <- url("http://www.trutschnig.net/iso12.RData") load(dir) head(iso12) summary(iso12)