dublincore | R Documentation |
Add metadata conforming the DCMI Metadata Terms. to datasets, i.e. structured R data.frame or list objects, for an accurate and consistent identification of a resource for citation and retrieval purposes.
dublincore(
title,
creator,
identifier = NULL,
publisher = NULL,
subject = NULL,
type = "DCMITYPE:Dataset",
contributor = NULL,
date = NULL,
language = NULL,
relation = NULL,
format = "application/r-rds",
rights = NULL,
datasource = NULL,
description = NULL,
coverage = NULL
)
as_dublincore(x, type = "bibentry", ...)
is.dublincore(x)
## S3 method for class 'dublincore'
is.dublincore(x)
title |
dct:title, a name given to the resource.
|
creator |
An entity primarily responsible for making the resource.
dct:creator
Corresponds to |
identifier |
An unambiguous reference to the resource within a given context.
Recommended practice is to identify the resource by means of a string conforming to an
identification system. Examples include International Standard Book Number (ISBN),
Digital Object Identifier (DOI), and Uniform Resource Name (URN).
Select and identifier scheme from
registered URI schemes maintained by IANA.
More details: Guidelines for using resource identifiers in Dublin Core metadata and IEEE LOM.
Similar to |
publisher |
Corresponds to dct:publisher
and Publisher in DataCite.
The name of the entity that holds, archives, publishes prints, distributes, releases,
issues, or produces the resource. This property will be used to formulate the citation,
so consider the prominence of the role. For software, use |
subject |
Defaults to |
type |
The nature or genre of the resource. Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary
DCMITYPE.
For a dataset, the correct term is |
contributor |
An entity responsible for making contributions to the dataset. See DCMI: Contributor. |
date |
Corresponds to a point or period of time associated with an event in the
lifecycle of the resource. dct:date.
|
language |
A language of the dataset. See DCMI: Language. |
relation |
A related resource. Recommended best practice is to identify the related
resource by means of a string conforming to a formal identification system.
See: dct:relation.
Similar to |
format |
The file format, physical medium, or dimensions of the dataset. See DCMI: Format. |
rights |
Corresponds to dct:rights and
|
datasource |
The source of the dataset,
DCMI: Source,
which corresponds to a |
description |
An account of the resource. It may include but is not limited to:
an abstract, a table of contents, a graphical representation, or a free-text account of the resource.
dct:description. In
|
coverage |
The spatial or temporal topic of the resource, spatial applicability of the dataset, or jurisdiction under which the dataset is relevant. See DCMI: Coverage. |
x |
An object that is tested if it has a class "dublincore". |
... |
Optional parameters to add to a |
The Dublin Core, also known as the Dublin Core Metadata Element Set (DCMES), is a set of fifteen main metadata items for describing digital or physical resources, such as datasets or their printed versions. Dublin Core has been formally standardized internationally as ISO 15836, as IETF RFC 5013 by the Internet Engineering Task Force (IETF), as well as in the U.S. as ANSI/NISO Z39.85.
The ResourceType
property will be by definition "Dataset".
The Size
attribute (e.g. bytes, pages, inches, etc.) will automatically added to the dataset.
dublincore()
creates a utils::bibentry
object
extended with standard Dublin Core bibliographical metadata, as_dublincore()
retrieves the contents of this bibentry object of a dataset_df from its
attributes, and returns the contents as list, dataset_df, or bibentry object.
A logical value, if the bibliographic entries are listed according to the Dublin Core specification.
Other bibentry functions:
datacite()
,
get_bibentry()
my_bibentry <- dublincore(
title = "Iris Dataset",
creator = person("Edgar", "Anderson", role = "aut"),
publisher = "American Iris Society",
datasource = "https://doi.org/10.1111/j.1469-1809.1936.tb02137.x",
date = 1935,
language = "en",
description = "This famous (Fisher's or Anderson's) iris data set gives the
measurements in centimeters of the variables sepal length and width and petal length
and width, respectively, for 50 flowers from each of 3 species of iris.
The species are Iris setosa, versicolor, and virginica."
)
as_dublincore(iris_dataset, type="list")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.