View source: R/personnel-element.R
create_person | R Documentation |
Create personnel element according to EML standards
create_person(role, first_name, last_name, email, organization, orcid = NULL)
role |
Use "creator" if you are one of the primary originators of the data. Other possible roles "Data Manager", "Field Technician", or "Assistant Researcher". There can be multiple personnel on a project with the same role. |
first_name |
Person's given name |
last_name |
Person's surname |
email |
Person's email address |
organization |
Person's employer or the entity they are associated with for this dataset or project |
orcid |
(Optional) ORCID iD is a persistent digital identifier for researchers, register at http://orcid.org/ |
A person element that can be appended to a dataset or project list.
create_person(first_name = 'Katherine',
last_name = "Johnson",
email = 'kjohnson@nasa.gov',
role = 'creator',
organization = 'NASA',
orcid = '12345')
create_person(first_name = "Edith",
last_name = "Windsor",
email = 'ewindsor@ibm.com',
role = 'Data Manager',
organization = 'IBM')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.