Count number of papers per journal, with year range
Source:R/table_journal_count.R
table_journal_count.Rd
Count number of papers per journal, with year range
Arguments
- data
The processed dataframe of data
- datatable
Whether to output a DT::datatable HTML table widget instead of a regular dataframe (defaults to TRUE).
Examples
if (FALSE) { # \dontrun{
data <- fetch_openalex_pubs(journal_name = "Collabra", pages = 1)
data <- clean_journals_continents(data)
table_journal_count(data)
} # }