sjr_journals | R Documentation |
SCImago Journal Rank for all journals indexed by Scopus in 1999–2023
sjr_journals
A tibble with 677,618 rows and 22 variables:
Year of SCImago Journal Ranking calculation.
Rank of the journal among all journals.
Database ID of the journal.
Journal's title.
Type: "journal", "book series", "trade journal", or "conference and proceedings"
ISSN journal identifier.
SCImago Journal Rank indicator. It expresses the average number of weighted citations received in the selected year by the documents published in the selected journal in the three previous years, –i.e. weighted citations received in year X to documents published in the journal in years X-1, X-2 and X-3. See [detailed description of SJR](https://www.scimagojr.com/SCImagoJournalRank.pdf) (PDF).
Highest quartile of the journal among all categories it belongs to.
Hirsch index of the journal. The h index expresses the journal's number of articles (h) that have received at least h citations. It quantifies both journal scientific productivity and scientific impact and it is also applicable to scientists, countries, etc. ([see H-index Wikipedia definition](http://en.wikipedia.org/wiki/Hirsch_number)).
Total number of published documents within a specific year. All types of documents are considered, including citable and non citable documents.
Published documents in the three previous years (selected year documents are excluded), i.e.when the year X is selected, then X-1, X-2 and X-3 published documents are retrieved. All types of documents are considered, including citable and non citable documents.
Total number of citations received by a journal to the documents published within a specific year.
Number of citations received in the selected year by a journal to the documents published in the three previous years, –i.e. citations received in year X to documents published in years X-1, X-2 and X-3. All types of documents are considered.
Number of citable documents published by a journal in the three previous years (selected year documents are excluded). Exclusively articles, reviews and conference papers are considered..
Average citations per document in a 2 year period. It is computed considering the number of citations received by a journal in the current year to the documents published in the two previous years, –i.e. citations received in year X to documents published in years X-1 and X-2. Comparable to Journal Impact Factor.
Average number of references per document in the selected year..
Country of the publisher.
Region of the publisher.
Publisher of the journal.
Years covered.
Categories the journal belongs to.
Areas of science. Only appeared in 2022.
SCImago, (n.d.). SJR — SCImago Journal & Country Rank [Portal]. Retrieved 2024-04-22, from http://www.scimagojr.com https://www.scimagojr.com/journalrank.php
## Not run:
library(tidyverse)
library(sjrdata)
# Nature VS Science
sjr_journals %>%
filter(title %in% c("Nature", "Science")) %>%
ggplot(aes(cites_doc_2years, sjr, color = title))+
geom_path(size = 1, alpha = .5)+
geom_label(aes(label = year %>% str_sub(3, 4)),
size = 3, label.padding = unit(.15, "line"))
# Demographic journals
sjr_journals %>%
filter(title %in% c(
"Demography",
"Population and Development Review",
"European Journal of Population",
"Population Studies",
"Demographic Research",
"Genus"
)) %>%
ggplot(aes(cites_doc_2years, sjr, color = title))+
geom_point()+
stat_ellipse()+
scale_color_brewer(palette = "Dark2")+
coord_cartesian(expand = F)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.