publication-class {neotoma2} | R Documentation |
An S4 class for a single Neotoma publication.
Description
A publication is liked to an individual Neotoma dataset object
They are grouped using an S4 publications
class.
Value
object of class publication
Examples
{
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))
pub <- new("publication",
articletitle = "Top or bottom: Best toast spreading surfaces.",
journal = "Peanut Butter Science",
year = "2022",
volume = "2",
author = author_list)
}
[Package neotoma2 version 1.0.4 Index]