padl-project / palmyra-papers

Here we manage data from all the papers that has been published on Palmyra Atoll
0 stars 0 forks source link

Exploration Code #2

Open camilavargasp opened 2 years ago

camilavargasp commented 2 years ago

Here is the code to plot the number of publications throughout the years.

pub_data <- read_csv("https://docs.google.com/spreadsheets/d/e/2PACX-1vTzUCO3Q2_b7uFlUp_eVCAx0Ss1RrgSWyksX8sTLqjmBEKmsiUM0S_kX2ZuxQJArQ/pub?gid=588950718&single=true&output=csv")

ggplot(data = pub_data %>% filter(publication_year > 2000), aes(x = publication_year))+ geom_bar()+ scale_x_continuous(breaks = seq(2002,2021, 1))+ theme_classic()+ theme(axis.text.x = element_text(angle = 90, vjust = 0.1))