Skip to content

Training material for the course "A Short Introduction to R for Actuaries" for the Slovak Society of Actuaries in June 2019

Notifications You must be signed in to change notification settings

JSchelldorfer/Intro2R

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Short Introduction to R for Actuaries, Bratislava 2019

All the material of the training is available here on GitHub. The course closely follows other courses and teaching material listed below.

Required Software

In order to make best use of the training, please bring a laptop and install the following software on your laptop before the training (there is no time during the training).

It can be that you can not install the software on your company laptop, then bring your private laptop with you.

However, you can still follow the training without the software installed. The material is provided as html file as well.

Required Packages

After installing the required software, please run the following commands to install the specific packages used during the training. (It is known that the "CASdatasets" package can sometimes not be installed. No problem, we provide you with the required data/code separately on this GitHub repository).

if (!require("MASS")) install.packages("MASS")
if (!require("tidyverse")) install.packages("tidyverse")
if (!require("caret")) install.packages("caret")
if (!require("mgcv")) install.packages("mgcv")
if (!require("plyr")) install.packages("plyr")
if (!require("gridExtra")) install.packages("gridExtra")
if (!require("visreg")) install.packages("visreg")
if (!require("plotrix")) install.packages("plotrix")
if (!require("rgeos")) install.packages("rgeos", type="source")
if (!require("rgdal")) install.packages("rgdal", type="source")
if (!require("xtable")) install.packages("xtable")
if (!require("maptools")) install.packages("maptools")
if (!require("CASdatasets")) install.packages("CASdatasets", repos = "http://cas.uqam.ca/pub/R/", type="source")

If the installation succeeded, the following lines load the packages.

library("MASS")
library("tidyverse")
library("mgcv")
library("caret")
library("gridExtra")
library("plyr")
library("visreg")
library("plotrix")
library("rgdal")
library("rgeos")
library("xtable")
library("maptools")
library("CASdatasets")

If the installation and loading succeeded, the following lines should load a dataset and show the first six lines.

data("freMTPLfreq")
head(freMTPLfreq)
##   PolicyID ClaimNb Exposure Power CarAge DriverAge
## 1        1       0     0.09     g      0        46
## 2        2       0     0.84     g      0        46
## 3        3       0     0.52     f      2        38
## 4        4       0     0.45     f      2        38
## 5        5       0     0.15     g      0        41
## 6        6       0     0.75     g      0        41
##                                Brand     Gas Region Density
## 1 Japanese (except Nissan) or Korean  Diesel    R72      76
## 2 Japanese (except Nissan) or Korean  Diesel    R72      76
## 3 Japanese (except Nissan) or Korean Regular    R31    3003
## 4 Japanese (except Nissan) or Korean Regular    R31    3003
## 5 Japanese (except Nissan) or Korean  Diesel    R52      60
## 6 Japanese (except Nissan) or Korean  Diesel    R52      60

References

The training material is based on (and closely follows) the following literature:

About

Training material for the course "A Short Introduction to R for Actuaries" for the Slovak Society of Actuaries in June 2019

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published