-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path00.pkg.R
25 lines (24 loc) · 1.06 KB
/
00.pkg.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
################################################################################
# Updated version of the R code for the analysis in:
#
# "Scortichini M, Schneider Dos Santos R, De' Donato F, De Sario M,
# Michelozzi P, Davoli M, Masselot P, Sera F, Gasparrini A.
# Excess mortality during the COVID-19 outbreak in Italy: a two-stage
# interrupted time-series analysis.
# International Journal of Epidemiology. 2020. DOI: 10.1093/ije/dyaa169."
# http://www.ag-myresearch.com/2020_scortichini_ije.html
#
# Update: 21 October 2020
# * an updated version of this code, compatible with future versions of the
# software, is available at:
# https://github.com/gasparrini/ItalyCOVIDdeath
################################################################################
# LOAD THE PACKAGES
library(curl) ; library(data.table)
library(dplyr) ; library(lubridate)
library(dlnm) ; library(mixmeta) ; library(tsModel)
library(splines) ; library(pbs)
library(scales)
library(sp) ; library(tmap) ; library(GISTools) ; library(sf)
library(ggplot2) ; library(grid)
library(openxlsx)