plot_pubs_by_author: Plot Number of Publications by Author

Description Usage Arguments Value Examples

View source: R/plot_pubs_by_author.R

Description

Plot Number of Publications by Author

Usage

1
plot_pubs_by_author(pubs_by_author_df)

Arguments

pubs_by_author_df

a data frame with author names in column "value" and number of publications (in column "n")

Value

plot of number of publications per author

Examples

1
2
3
4
5
refs_by_author_lastfirst <- create_df_from_endnote_xml() %>%
dplyr::filter(.data$key2 == "authors") %>%
dplyr::count(.data$value)  %>%
dplyr::arrange(dplyr::desc(.data$n))
plot_pubs_by_author(refs_by_author_lastfirst[1:30, ])

KWB-R/kwb.endnote documentation built on July 8, 2021, 4:18 p.m.