Learn R Programming

c2z (version 0.2.0)

ZoteroIndex: Create an index of Zotero items

Description

The function creates a index containing key information about the present Zotero items

Usage

ZoteroIndex(data)

Value

A tibble

Arguments

data

Tibble containing Zotero-type metadata (e.g., from Cristin)

Details

Please see https://oeysan.github.io/c2z/

See Also

Examples

Run this code
# \donttest{
  # Access the default group library
  example = Zotero(
    user = FALSE,
    id = "4827927",
    api = "RqlAmlH5l1KPghfCseAq1sQ1",
    library = TRUE
  )
  # Print index using `ZoteroIndex`
  if (any(nrow(example$items))) {
  ZoteroIndex(example$items) |>
    dplyr::select(name) |>
    print(width = 80)
  }
# }

Run the code above in your browser using DataLab