Description Usage Arguments Value Examples
View source: R/plot_pubs_by_author.R
Plot Number of Publications by Author
1 | plot_pubs_by_author(pubs_by_author_df)
|
pubs_by_author_df |
a data frame with author names in column "value" and number of publications (in column "n") |
plot of number of publications per author
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, ])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.