ESI (Essential Science Indicators) is widely used in the evaluation of scientific research competitiveness. The goal of tidyESI
is to make discipline statistics more easy and more tidyverse.
You can install the development version of tidyESI
with:
devtools::install_github("perlatex/tidyESI")
There are manuals and documents here, but only Chinese at present.
This is a basic example which shows you how to solve a common problem:
library(tidyESI)
esi_discipline
library(tidyverse)
dt <- tibble(x = c("Agricultural Sciences", "Chemistry"))
dt
dt %>% add_esi_threshold(x)
dt %>% add_esi_threshold(x, date = "all")
dt %>% add_esi_threshold(x, date = "ALL")
dt %>% add_esi_threshold(x, date = c("20200326"))
dt %>% add_esi_threshold(x, date = c("20200326", "20200514"))
esi_discipline %>% add_esi_threshold(discipline, date = "last")
esi_discipline %>% add_esi_threshold(discipline, date = "all")
sicnu <- read_highcited(here::here("data", "highly20200514.xlsx"))
sicnu
df <- tibble(
u = "Sichuan Normal University",
d = c("Chemistry")
)
df %>%
add_high_cited(u, d, source = sicnu, scope = "all year")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.