| tableschema.r-package | R Documentation | 
Table class for working with data and schema
Table Schema is a simple language- and implementation-agnostic way to declare a schema for tabular data. Table Schema is well suited for use cases around handling and validating tabular data in text formats such as CSV, but its utility extends well beyond this core usage, towards a range of applications where data benefits from a portable schema format.
#
Tabular data consists of a set of rows. Each row has a set of fields (columns). We usually expect that each row has the same set of fields and thus we can talk about the fields for the table as a whole.
In case of tables in spreadsheets or CSV files we often interpret the first row as a header row, giving the names of the fields. By contrast, in other situations, e.g. tables in SQL databases, the field names are explicitly designated.
In order to talk about the representation and processing of tabular data from text-based sources, it is useful to introduce the concepts of the physical and the logical representation of data.
The physical representation of data refers to the representation of data as text on disk, for example, in a CSV or JSON file. This representation may have some type information (JSON, where the primitive types that JSON supports can be used) or not (CSV, where all data is represented in string form).
The logical representation of data refers to the "ideal" representation of the data in terms of primitive types, data structures, and relations, all as defined by the specification. We could say that the specification is about the logical representation of data, as well as about ways in which to handle conversion of a physical representation to a logical one.
In this document, we'll explicitly refer to either the physical or logical representation in places where it prevents ambiguity for those engaging with the specification, especially implementors.
For example, constraints should be tested on the logical representation of data, 
whereas a property like missingValues applies to the physical representation of the data.
A Table Schema is represented by a descriptor. The descriptor MUST be a JSON object 
(JSON is defined in RFC 4627).
It MUST contain a property fields. fields MUST be an array/list where each entry 
in the array/list is a field descriptor (as defined below). The order of elements in fields array/list 
MUST be the order of fields in the CSV file. The number of elements in fields array/list 
SHOULD be exactly the same as the number of fields in the CSV file.
The descriptor MAY have the additional properties set out below and MAY contain 
any number of other properties (not defined in this specification).
See Field Class
See Types Class
See Constraints Class
In additional to field descriptors, there are the following "table level" properties.
Many datasets arrive with missing data values, either because a value was not collected or it never existed. Missing values may be indicated simply by the value being empty in other cases a special value may have been used e.g. -, NaN, 0, -9999 etc.
missingValues dictates which string values should be treated as null values. 
This conversion to null is done before any other attempted type-specific string conversion. 
The default value list("") means that empty strings will be converted to null before any other 
processing takes place. Providing the empty list means that no conversion to null will 
be done, on any value.
missingValues MUST be a list where each entry is a string.
Why strings: missingValues are strings rather than being the data type of the particular field. 
This allows for comparison prior to casting and for fields to have missing value which are not 
of their type, for example a number field to have missing values indicated by -.
Examples:
missingValues = list("")
missingValues = list("-")
missingValues = list("NaN", "-")
A primary key is a field or set of fields that uniquely identifies each row in the table.
The primaryKey entry in the schema object is optional. If present it specifies the primary key for this table.
The primaryKey, if present, MUST be:
Either: an array of strings with each string corresponding to one of the field name values in the fields array 
(denoting that the primary key is made up of those fields). It is acceptable to have an array with a single value 
(indicating just one field in the primary key). Strictly, order of values in the array does not matter. 
However, it is RECOMMENDED that one follow the order the fields in the fields has as client applications may 
utitlize the order of the primary key list (e.g. in concatenating values together).
Or: a single string corresponding to one of the field name values in the fields array/list 
(indicating that this field is the primary key). Note that this version corresponds to the array form 
with a single value (and can be seen as simply a more convenient way of specifying a single field primary key).
A foreign key is a reference where values in a field (or fields) on the table ('resource' in data package terminology) described by this Table Schema connect to values a field (or fields) on this or a separate table (resource). They are directly modelled on the concept of foreign keys in SQL.
The foreignKeys property, if present, MUST be a list Each entry in the array must be a foreignKey. 
A foreignKey MUST be a object and MUST have the following properties:
fields - fields is a string or array specifying the field or fields on this resource that form the source part 
of the foreign key. The structure of the string or array is as per primaryKey above.
reference - reference MUST be a object. The object
MUST have a property resource which is the name of the resource within the current data package 
(i.e. the data package within which this Table Schema is located). For self-referencing foreign keys, 
i.e. references between fields in this Table Schema, the value of resource MUST be "" (i.e. the empty string).
MUST have a property fields which is a string if the outer fields is a string, 
else an array of the same length as the outer fields, describing the field (or fields) references 
on the destination resource. The structure of the string or array is as per primaryKey above.
Comment: Foreign Keys create links between one Table Schema and another Table Schema, 
and implicitly between the data tables described by those Table Schemas. If the foreign key is referring to 
another Table Schema how is that other Table Schema discovered? The answer is that a Table Schema will 
usually be embedded inside some larger descriptor for a dataset, in particular as the schema for a resource 
in the resources array of a hrefhttp://frictionlessdata.io/specs/data-package/Data Package. 
It is the use of Table Schema in this way that permits a meaningful use of a non-empty resource 
property on the foreign key.
Jsolite package is internally used to convert json data to list objects. The input parameters of functions could be json strings, files or lists and the outputs are in list format to easily further process your data in R environment and exported as desired. More details about handling json you can see jsonlite documentation or vignettes here.
Future package is also used to load and create Table and Schema classes asynchronously. 
To retrieve the actual result of the loaded Table or Schema you have to use value function to the variable you stored the loaded Table/Schema. 
More details about future package and sequential and parallel processing you can find here.
Examples section of each function show how to use jsonlite and future packages with tableschema.r. 
Term array refers to json arrays which if converted in R will be list objects.
The key words MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, 
SHOULD, SHOULD NOT, RECOMMENDED, MAY, and OPTIONAL 
in this package documents are to be interpreted as described in RFC 2119.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.