View source: R/dataset_title.R
dataset_title | R Documentation |
Add one or more Title(s)
to the dataset's metadata.
dataset_title(x)
dataset_title(x, overwrite = FALSE) <- value
dataset_title_create(Title, titleType = "Title")
x |
An R object |
overwrite |
Defaults to |
value |
The name(s) or title(s) by which a resource is known. A character string or
a Title object created by |
Title |
The name(s) or title(s) by which a resource is known, including |
titleType |
In DataCite, the controlled values are
|
In the DataCite definition, several titles can be used.
The titles as a data.frame with a titleTypes column.
my_iris <- iris
dataset_title(my_iris) <- dataset_title_create(
Title = c("Iris Dataset",
"The famous iris dataset of the R examples"),
titleType = c("Title", "Subtitle")
)
dataset_title(my_iris)
y <- data.frame()
dataset_title(y) <- "R (Computer program language)"
dataset_title(y) <- "Questionnaires--Computer programs"
dataset_title(y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.