Learn R Programming

neotoma2 (version 1.0.5)

authors-class: An S4 class for a set of Neotoma author objects.

Description

The S4 authors are a set of individual author objects that are then associated with a single S4 publication class.

Arguments

Value

object of class authors

Examples

Run this code
{
simon <- new("contact", familyname = "Goring", givennames = "Simon J.")
socorro <- new("contact", familyname = "Dominguez", givennames = "Socorro")
first_author <- new("author", author = simon, order = 1)
second_author <- new("author", author = socorro, order = 2)
author_list <- new("authors", authors = list(first_author, second_author))
}

Run the code above in your browser using DataLab