Plot Number of Publications by Author

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

refs_by_author_lastfirst <- create_df_from_endnote_xml() %>% dplyr::filter(.data$key2 == "authors") %>% dplyr::count(.data$value) %>% dplyr::arrange(dplyr::desc(.data$n))
#> Reading '2020-06-17_KWB-documents.xml' in folder #> '/Users/runner/work/_temp/Library/kwb.endnote/extdata' ... ok.
#> Joining, by = "record_id"
plot_pubs_by_author(refs_by_author_lastfirst[1:30, ])