Hi all,
I am trying to download asylum monthly applications from Eurostat using the eurostat package. I would like to get only the latest figures, preferably the latest month available or all 2018 months would work too. The problem is that downloading the entire dataset crashes Rstudio, while I get an error when filtering with sinceTimePeriod.
Hope someone knows a way around this.
Thanks,
Mattia
# downloading the entire dataset crashes Rstudio
applications_all <- get_eurostat("migr_asyappctzm", time_format = "raw")
applications_latest <-subset(applications_all, time == 2018)
# filtering with sinceTimePeriod returns error “Failure to get data. Status code: 416. Some datasets are not accessible via the eurostat interface.”
applications <-get_eurostat("migr_asyappctzm", filters = list(sinceTimePeriod = 2018), type = "label", time_format = "num")