r <- readxl::read_excel("RUSSIA_JCR_2024.xlsx")
r$`JCR Abbreviation` <- NULL
r$`ISSN` <- NULL
r$`eISSN` <- NULL
r$Edition <- NULL
{.tabset}
head(as.data.frame(r))
## Journal name
## 1 RUSSIAN CHEMICAL REVIEWS
## 2 PHYSICS-USPEKHI
## 3 International Journal of Corrosion and Scale Inhibition
## 4 Journal of Mining Institute
## 5 BIOCHEMISTRY-MOSCOW
## 6 Acta Naturae
## Category 2023 JIF JIF Quartile
## 1 CHEMISTRY, MULTIDISCIPLINARY 7.0 Q1
## 2 PHYSICS, MULTIDISCIPLINARY 3.1 Q1
## 3 MATERIALS SCIENCE, MULTIDISCIPLINARY 2.8 Q3
## 4 MINING & MINERAL PROCESSING 2.4 Q2
## 5 BIOCHEMISTRY & MOLECULAR BIOLOGY 2.3 Q3
## 6 CELL BIOLOGY 2.0 Q4
head(r)
## # A tibble: 6 × 4
## `Journal name` Category `2023 JIF` `JIF Quartile`
## <chr> <chr> <chr> <chr>
## 1 RUSSIAN CHEMICAL REVIEWS CHEMIST… 7.0 Q1
## 2 PHYSICS-USPEKHI PHYSICS… 3.1 Q1
## 3 International Journal of Corrosion and Sca… MATERIA… 2.8 Q3
## 4 Journal of Mining Institute MINING … 2.4 Q2
## 5 BIOCHEMISTRY-MOSCOW BIOCHEM… 2.3 Q3
## 6 Acta Naturae CELL BI… 2.0 Q4
formattable::formattable(head(r))
| Journal name | Category | 2023 JIF | JIF Quartile |
|---|---|---|---|
| RUSSIAN CHEMICAL REVIEWS | CHEMISTRY, MULTIDISCIPLINARY | 7.0 | Q1 |
| PHYSICS-USPEKHI | PHYSICS, MULTIDISCIPLINARY | 3.1 | Q1 |
| International Journal of Corrosion and Scale Inhibition | MATERIALS SCIENCE, MULTIDISCIPLINARY | 2.8 | Q3 |
| Journal of Mining Institute | MINING & MINERAL PROCESSING | 2.4 | Q2 |
| BIOCHEMISTRY-MOSCOW | BIOCHEMISTRY & MOLECULAR BIOLOGY | 2.3 | Q3 |
| Acta Naturae | CELL BIOLOGY | 2.0 | Q4 |
DT::datatable(head(r))
Sys.sleep(1)
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.
When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
You can also embed plots, for example:
Note that the echo = FALSE parameter was added to the
code chunk to prevent printing of the R code that generated the
plot.