-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
183 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#' @name rsdmx | ||
#' @aliases rsdmx-package | ||
#' @aliases rsdmx | ||
#' @docType package | ||
#' | ||
#' @title Tools for Reading SDMX Data and Metadata | ||
#' @description | ||
#' RSDMX is a package to parse/read SDMX documents in R. It provides: | ||
#' - a set of classes and methods to read data and metadata documents exchanged | ||
#' through theStatistical Data and Metadata Exchange (SDMX) framework. The package | ||
#' currently focuses on the SDMX XML standard format (SDMX-ML). | ||
#' - an web-service interface to well-known SDMX data providers | ||
#' | ||
#' @details | ||
#' \tabular{ll}{ | ||
#' Package: \tab rsdmx\cr | ||
#' Type: \tab Package\cr | ||
#' Version | ||
#' : \tab 0.5-1\cr | ||
#' Date: \tab 2015-10-08\cr | ||
#' License: \tab GPL(>=2.0)\cr | ||
#' LazyLoad: \tab yes\cr | ||
#' } | ||
#' | ||
#'@author Emmanuel Blondel \email{emmanuel.blondel1@@gmail.com} | ||
#' | ||
NULL |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/Class-SDMXAttribute.R, R/SDMXAttribute-methods.R | ||
\docType{class} | ||
\name{SDMXAttribute} | ||
\alias{SDMXAttribute} | ||
\alias{SDMXAttribute,SDMXAttribute-method} | ||
\alias{SDMXAttribute-class} | ||
\title{Class "SDMXAttribute"} | ||
\usage{ | ||
SDMXAttribute(xmlObj) | ||
} | ||
\arguments{ | ||
\item{xmlObj}{object of class "XMLInternalDocument derived from XML package} | ||
} | ||
\value{ | ||
an object of class "SDMXAttribute" | ||
} | ||
\description{ | ||
A basic class to handle a SDMX Attribute | ||
} | ||
\section{Slots}{ | ||
\describe{ | ||
\item{\code{conceptRef}}{Object of class "character" giving the attribute conceptRef (required)} | ||
\item{\code{conceptVersion}}{Object of class "character" giving the attribute concept version} | ||
\item{\code{conceptAgency}}{Object of class "character" giving the attribute concept agency} | ||
\item{\code{conceptSchemeRef}}{Object of class "character" giving the attribute conceptScheme ref} | ||
\item{\code{conceptSchemeAgency}}{Object of class "character" giving the attribute conceptScheme agency} | ||
\item{\code{codelist}}{Object of class "character" giving the codelist ref name} | ||
\item{\code{codelistVersion}}{Object of class "character" giving the codelist ref version} | ||
\item{\code{codelistAgency}}{Object of class "character" giving the codelist ref agency} | ||
\item{\code{attachmentLevel}}{Object of class "character" giving the attachment level (e.g. DataSet)} | ||
\item{\code{assignmentStatus}}{Object of class "character" giving the assignment status (e.g. Mandatory)} | ||
\item{\code{isTimeFormat}}{Object of class "logical"} | ||
\item{\code{crossSectionalAttachDataset}}{Object of class "logical"} | ||
\item{\code{crossSectionalAttachGroup}}{Object of class "logical"} | ||
\item{\code{crossSectionalAttachSection}}{Object of class "logical"} | ||
\item{\code{crossSectionalAttachObservation}}{Object of class "logical"} | ||
\item{\code{isEntityAttribute}}{Object of class "logical" indicating if the Attribute is an entity Attribute. Default value is FALSE} | ||
\item{\code{isNonObservationTimeAttribute}}{Object of class "logical" indicating if the Attribute is a non-observation Attribute. Default value is FALSE} | ||
\item{\code{isCountAttribute}}{Object of class "logical" indicating if the Attribute is a count Attribute. Default value is FALSE} | ||
\item{\code{isFrequencyAttribute}}{Object of class "logical" indicating if the Attribute is a frequency Attribute. Default value is FALSE} | ||
\item{\code{isIdentityAttribute}}{Object of class "logical" indicating if the Attribute is an identity Attribute. Default value is FALSE} | ||
}} | ||
\section{Warning}{ | ||
This class is not useful in itself, but all SDMX non-abstract classes will | ||
encapsulate it as slot, when parsing an SDMX-ML document (DataStructures, or | ||
DataStructureDefinitions) | ||
} | ||
\author{ | ||
Emmanuel Blondel, \email{emmanuel.blondel1@gmail.com} | ||
} | ||
\seealso{ | ||
\link{readSDMX} | ||
} | ||
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/rsdmx.R | ||
\docType{package} | ||
\name{rsdmx} | ||
\alias{rsdmx} | ||
\alias{rsdmx-package} | ||
\title{Tools for Reading SDMX Data and Metadata} | ||
\description{ | ||
RSDMX is a package to parse/read SDMX documents in R. It provides: | ||
- a set of classes and methods to read data and metadata documents exchanged | ||
through theStatistical Data and Metadata Exchange (SDMX) framework. The package | ||
currently focuses on the SDMX XML standard format (SDMX-ML). | ||
- an web-service interface to well-known SDMX data providers | ||
} | ||
\details{ | ||
\tabular{ll}{ | ||
Package: \tab rsdmx\cr | ||
Type: \tab Package\cr | ||
Version | ||
: \tab 0.5-1\cr | ||
Date: \tab 2015-10-08\cr | ||
License: \tab GPL(>=2.0)\cr | ||
LazyLoad: \tab yes\cr | ||
} | ||
} | ||
\author{ | ||
Emmanuel Blondel \email{emmanuel.blondel1@gmail.com} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters