Retrieve information from Statistik Austria open.data

statatAPI(dataset = stop("'dataset' must be provided"), query = FALSE,
  curl = NULL)

statatDFtoXTS(data = stop("'data' must be provided"))

statatTables(baseurl = "http://data.statistik.gv.at/web/catalog.jsp")

statatDimension(dataset = stop("'dataset' must be provided"),
  dimension = stop("'dimension' must be provided"))

statatChangeDates(str)

Arguments

query

logical to return OData http url only.

curl

optional, CURL handle created with RCurl::getCurlHandle()

data

a data frame created with get_pxweb_data

dimension

dimension to be retrieved.

str

a character string with Statistik Austria open.data dates, e.g. "A10-1976", "197311", "VPIZR-201101"

DSD

a dataset identifier.

url

location of table list XML document.

url

location of table list XML document.

Details

Retrieve information from Statistik Austria open.data using CSV format.

See also

http://http://data.statistik.gv.at/web

Examples

# NOT RUN {
dataset <- "OGD_vgr001_VGRJahresR_1"
statatAPI(dataset = dataset)
# }# NOT RUN {
dataset <- "OGD_f1531neu_Aussenhandel_1"
dimension <- "C_UBL1531_0"
statatDimension(dataset = dataset, dimension = dimension)
# }