ZoteroIndex {c2z}R Documentation

Create an index of Zotero items

Description

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

Usage

ZoteroIndex(data)

Arguments

data

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

Details

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

Value

A tibble

See Also

filter, mutate, across, na_if, case_when, arrange, group_by, context, select everything pmap

Examples


  # 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)
  }


[Package c2z version 0.2.0 Index]