Skip to contents

This function retrieves a list of available dataflow from the INSEE SDMX web service. It extracts the ID and label for each dataflow and returns them in a data frame.

Usage

get_insee_dataflow()

Value

A data frame with two columns:

id

The ID of the dataflow.

label

The label or name of the dataflow.

Details

The function uses the rsdmx package to connect to the INSEE SDMX web service and retrieve the dataflow information.

Examples

if (FALSE) { # \dontrun{
# Retrieve the list of INSEE dataflow
dataflow = get_insee_dataflow()
print(head(dataflow))
} # }