Publication places

Top-r ntop publication places are shown together with the number of documents.

p <- top_plot(df, "publication_place", ntop)
p <- p + ggtitle(paste("Top publication places"))
p <- p + scale_y_log10()
p <- p + ylab("Title count")
print(p)

p <- top_plot(df, "publication_country", ntop)
p <- p + ggtitle(paste("Top publication countries"))
p <- p + scale_y_log10()
p <- p + ylab("Title count")
print(p)

Publication countries

tab <- top(df, "publication_country", output = "data.frame", round = 1)
colnames(tab) <- c("Country", "Documents (n)", "Fraction (%)")
library(knitr)
kable(head(tab))

Geocoordinates

Publication geography



rOpenGov/bibliographica documentation built on April 10, 2022, 8:51 p.m.