get_insee_title: Get title from INSEE series idbank

Description Usage Arguments Details Value 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.

Value

a character vector with the titles

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#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_selected =
  get_idbank_list("IPI-2015") %>% #industrial production index dataset
  filter(FREQ == "M") %>% #monthly
  filter(NATURE == "INDICE") %>% #index
  filter(CORRECTION  == "CVS-CJO") %>% #Working day and seasonally adjusted SA-WDA
  filter(str_detect(NAF2,"^29$|A10-BE")) %>% #automotive industry and overall industrial production
  mutate(title = get_insee_title(idbank))

hadrilec/insee documentation built on Oct. 13, 2021, 12:03 p.m.