ZoteroIndex {c2z} | R Documentation |
The function creates a index containing key information about the present Zotero items
ZoteroIndex(data)
data |
Tibble containing Zotero-type metadata (e.g., from Cristin) |
Please see https://oeysan.github.io/c2z/
A tibble
filter
, mutate
,
across
, na_if
,
case_when
, arrange
,
group_by
, context
,
select
everything
pmap
# 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)
}