View source: R/parse_authors.R
parse_authors | R Documentation |
Author
field from a DESCRIPTION fileParse the Author
field from a DESCRIPTION file into a person
object
parse_authors(author_string)
author_string |
A character containing the |
A character vector, or a list of character vectors of length equals
to the length of author_string
# Read from a DESCRIPTION file directly
utils_description <- system.file("DESCRIPTION", package = "utils")
utils_authors <- read.dcf(utils_description, "Author")
parse_authors(utils_authors)
# Read from a database of CRAN metadata
cran_epidemiology_packages$Author |>
parse_authors() |>
unlist() |>
unique() |>
sort()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.