get_insee_title: Get title from INSEE series idbank

Description Usage Arguments Details Examples

View source: R/get_insee_title.R

Description

Get title from INSEE series idbank

Usage

1
get_insee_title(..., lang = "en")

Arguments

...

list of series key (idbank)

lang

language of the title, by default it is Engligh, if lang is different from "en" then French will be the title's language

Details

Query INSEE website to get series title from series key (idbank). Any query to INSEE database can handle around 400 idbanks at maximum, if necessary the idbank list will then be splitted in several lists of 400 idbanks each. Consequently, it is not advised to use it on the whole idbank dataset, the user should filter the idbank dataset first.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#example 1 : industrial production index on manufacturing and industrial activities
title = get_insee_title("010537900")


#example 2 : automotive industry and overall industrial production
library(tidyverse)

idbank_list = get_idbank_list()

idbank_list_selected =
 idbank_list %>%
 filter(nomflow == "IPI-2015") %>% #industrial production index dataset
 filter(dim1 == "M") %>% #monthly
 filter(dim5 == "INDICE") %>% #index
 filter(dim8  == "CVS-CJO") %>% #Working day and seasonally adjusted SA-WDA
 filter(str_detect(dim4,"^29$|A10-BE")) %>% #automotive industry and overall industrial production
 mutate(title = get_insee_title(idbank))

hadrilec2/insee documentation built on Aug. 10, 2020, 1:53 a.m.