R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.

When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

library(rsdmx)
d01_url <- "http://stat.data.abs.gov.au/restsdmx/sdmx.ashx/GetData/ABS_CENSUS2011_T19_LGA/TOT+10+20+31_32+60+40_51_52+Z.TOT+01_02+03+04_05+06_07+08+09_10+11_13+14_17+18+19+20+Z.1+2+3+4+5+6+7+8+9.LGA2011.10200+10350+10750+13950+14000+14100+14150+14500+14700+15350+15950+16250+16700+18500.A/all?startTime=2001&endTime=2011"
d01_df <- as.data.frame(readSDMX(d01_url))
head(d01_df)
## NULL

Including Plots

You can also embed plots, for example:

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.