Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2.



Similar documents
Package retrosheet. April 13, 2015

Package uptimerobot. October 22, 2015

Package pdfetch. R topics documented: July 19, 2015

Package searchconsoler

Package whoapi. R topics documented: June 26, Type Package Title A 'Whoapi' API Client Version Date Author Oliver Keyes

Package sendmailr. February 20, 2015

Package urltools. October 11, 2015

Package R4CDISC. September 5, 2015

Package decompr. August 17, 2016

Package LexisPlotR. R topics documented: April 4, Type Package

Package WikipediR. January 13, 2016

Package AzureML. August 15, 2015

Package ggrepel. February 8, 2016

Package translater. R topics documented: February 20, Type Package

Package wordnet. January 6, 2016

Package optirum. December 31, 2015

Package syuzhet. February 22, 2015

Package DCG. R topics documented: June 8, Type Package

Package tagcloud. R topics documented: July 3, 2015

Package RIGHT. March 30, 2015

Package pinnacle.api

Package TSfame. February 15, 2013

Package packrat. R topics documented: March 28, Type Package

Package bizdays. March 13, 2015

Package cgdsr. August 27, 2015

Package RSQLite. February 19, 2015

Package GEOquery. August 18, 2015

Package sjdbc. R topics documented: February 20, 2015

Package instar. November 10, 2015

Package hoarder. June 30, 2015

Package fimport. February 19, 2015

Package jrvfinance. R topics documented: October 6, 2015

Package hazus. February 20, 2015

Package tvm. R topics documented: August 21, Type Package Title Time Value of Money Functions Version Author Juan Manuel Truppia

Package empiricalfdr.deseq2

Package franc. R topics documented: November 12, Title Detect the Language of Text Version 1.1.1

OECD.Stat Web Browser User Guide

Package benford.analysis

Package dggridr. August 29, 2016

Package RedditExtractoR

Package RCassandra. R topics documented: February 19, Version Title R/Cassandra interface

Package erp.easy. September 26, 2015

Package RGA. April 8, 2016

Package plan. R topics documented: February 20, 2015

Package httprequest. R topics documented: February 20, 2015

Pervasive Data Integrator. Oracle CRM On Demand Connector Guide

Package pxr. February 20, 2015

Package HHG. July 14, 2015

Resco CRM Server Guide. How to integrate Resco CRM with other back-end systems using web services

Filtered Views for Microsoft Dynamics CRM

Bulk Downloader. Call Recording: Bulk Downloader

Package tikzdevice. February 20, 2015

Package dsstatsclient

Package lmertest. July 16, 2015

Admin Guide Product version: Product date: November, Technical Administration Guide. General

Oracle Marketing Encyclopedia System

Package xtal. December 29, 2015

New Mexico State University. AiM 8.X Basic AiM

My IC Customizer: Descriptors of Skins and Webapps for third party User Guide

Package hive. July 3, 2015

Package DDIwR. R topics documented: February 19, Version Date Title DDI with R Depends R (>= 3.1.0) Imports XML, foreign

Package mcmcse. March 25, 2016

A Comparison of Database Query Languages: SQL, SPARQL, CQL, DMX

Searching your Archive in Outlook (Normal)

org.rn.eg.db December 16, 2015 org.rn.egaccnum is an R object that contains mappings between Entrez Gene identifiers and GenBank accession numbers.

Package brewdata. R topics documented: February 19, Type Package

Sabinet Reference Guide

Package SHELF. February 5, 2016

HTTP and HTTPS Statistics Services

Package rnoaa. December 2, 2015

Data Mailbox. support.ewon.biz. Reference Guide

Package HadoopStreaming

Oracle Universal Content Management

Package dunn.test. January 6, 2016

Release Bulletin Sybase ETL Small Business Edition 4.2

Portal Connector Fields and Widgets Technical Documentation

Package MBA. February 19, Index 7. Canopy LIDAR data

DocuSign for SharePoint

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

SPARROW Gateway. Developer API. Version 2.00

Package DiallelAnalysisR

Package hive. January 10, 2011

Package neuralnet. February 20, 2015

Global Transport Secure ecommerce. Web Service Implementation Guide

SalesJunction.com. Sales Force Automation & CRM. SJAPI Guide

Creating Connection with Hive

Package dsmodellingclient

Wave Analytics Data Integration

Transcription:

Type Package Title Search and Extract Data from the OECD Version 0.2.2 Date 2016-01-17 Package OECD January 17, 2016 Search and extract data from the OECD. License CC0 URL https://www.github.com/expersso/oecd BugReports https://www.github.com/expersso/oecd/issues Imports httr (>= 0.6.1), rsdmx (>= 0.4-7), methods (>= 3.2.2), xml2 (>= 0.1.2) VignetteBuilder knitr Suggests knitr, ggplot2, testthat RoxygenNote 5.0.1 NeedsCompilation no Author Eric Persson [aut, cre] Maintainer Eric Persson <expersso5@gmail.com> Repository CRAN Date/Publication 2016-01-17 10:59:30 R topics documented: browse_metadata...................................... 2 get_dataset......................................... 2 get_datasets......................................... 3 get_data_structure...................................... 4 search_dataset........................................ 4 Index 6 1

2 get_dataset browse_metadata Browse the metadata related to a series. Opens up a web browser with the metadata related to the requested series. browse_metadata(dataset,...) dataset A string specifying the code of the series.... Additional parameters passed to browseurl. Opens a web page in the default web browser. ## Not run: browse_metadata("dur_d") get_dataset Download OECD data sets. Returns a data frame with the requested data, downloaded through the OECD s API. get_dataset(dataset, filter = NULL, start_time = NULL, end_time = NULL, pre_formatted = FALSE,...) dataset filter start_time A string with the code for the desired data set A list of character vectors specifying filters to be applied to each dimension of the dataset (see examples below). If no filter is specified, the function downloads all dimensions unfiltered. Starting time for data. If left blank, no time filter is applied (i.e. all observations since the earliest available observation are downloaded). If end_time is specified, a start_time must also be specified.

get_datasets 3 end_time pre_formatted End time for data. boolean. Set to TRUE if filter to be applied is already formatted (e.g. if copied from the OECD s SDMX generator (see example below)).... Additional parameters passed to data.frame (e.g. stringsasfactors = FALSE). A data frame # Get entire dataset ## Not run: df <- get_dataset("epl_ov") ## Not run: head(df, 10) # Apply filter on dimensions "country" and "series" ## Not run: df <- get_dataset("epl_ov", filter = list(c("deu", "FRA"), c("eprc_v1", "EPRC_V2")), start_time = 2008, end_time = 2010) ## End(Not run) ## Not run: head(df, 10) # Use pre-formatted filter copied from stats.oecd.org ## Not run: df <- get_dataset("pats_region", filter = "PCT_A.INVENTORS.BEL+BE10+BE21.TOTAL+BIOTECH+ICT", start_time = 2008, end_time = 2010, pre_formatted = TRUE) ## End(Not run) ## Not run: head(df, 10) get_datasets Get a data frame with information on all available datasets. Returns a data frame with two variables: id and description get_datasets(...)... Additional parameters passed to data.frame (e.g. stringsasfactors = FALSE). A data frame.

4 search_dataset See Also search_dataset to search for a specific data set or a keyword in the description, and get_data_structure to get the dimensions of specified data set. ## Not run: datasets <- get_datasets() ## Not run: head(datasets) get_data_structure Get the data structure of a dataset. Returns a list of data frames containing names and descriptions of the variables of a specified series. get_data_structure(dataset) dataset A string containing the code for a dataset A list of data frames. ## Not run: get_data_structure("dur_d") search_dataset Search codes and descriptions of available OECD series Returns a data frame containing the series codes and descriptions for the OECD series which match the given criteria. search_dataset(string, data = get_datasets(), ignore.case = TRUE)

search_dataset 5 string data ignore.case A regular expression string to search for. The data frame to search. This can be either a data frame previously fetched using get_datasets (recommended) or left blank, in which case a temporary data frame is fetched. The second option adds a few seconds to each search query. Whether the search should be case-insensitive. See Also A data frame. get_datasets ## Not run: dsets <- get_datasets() ## Not run: search_dataset("employment", dsets)

Index browse_metadata, 2 get_data_structure, 4, 4 get_dataset, 2 get_datasets, 3, 5 search_dataset, 4, 4 6