#' Returns a list of all datasets
#'
#' @param beaKey Your API key
#' @keywords metadata
#' @return A metadata object of class 'list' of several dimensions. View list structure using 'str(yourList)'.
#' @export
#' @examplesIf interactive() && Sys.getenv("BEA_API_KEY") != ""
#' beaSets(Sys.getenv("BEA_API_KEY"))
beaSets <- function(beaKey) {
#Set up spec for it
beaMetaSpecs <- list(
'method' = 'GetDataSetList',
'UserID' = beaKey ,
'ResultFormat' = 'json'
)
#Set list using beaGet
beaResponse <- bea.R::beaGet(beaMetaSpecs, asList = TRUE, asTable = FALSE, isMeta = TRUE)
return(beaResponse)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.