Learn R Programming

ttwa (version 0.8.5.1)

reunion_ttw: Census data on travel to work flow between Reunion Island municipalities.

Description

A flow data frame travel to work between Reunion island municipalities from census (2010).

Usage

data(reunion_ttw)

Arguments

Format

A data frame with 5732 observations on the following 4 variables.
HOME
a character vector, INSEE Ids of the municipalities of the resident population
WORK
a character vector, INSEE Ids of the municipalities of work
FLOW
a numeric vector, working flow between the municipality of residence and the municipality of work
CONTI
a numeric vector, indicator function of the contiguity between the municipality of residence and the municipality of work

Source

Mobilites professionnelles (deplacements domicile - lieu de travail) - 2010 (Bases flux de mobilite) Decoupage geographique au 01/01/2012 - Mise a jour : juin 2013 Insee, Recensements de la population Original data can be retreived here : http://www.insee.fr/fr/bases-de-donnees/default.asp?page=recensement/resultats/doc/presentation-flux-mobilite-prof.htm

See Also

ttwa

Examples

Run this code
data(reunion_ttw) #commuting flow in Reunion island
zone_emploi<-ttwa(df=reunion_ttw,origin="HOME",
  destination="WORK", flow="FLOW",
  conti="CONTI",size_center=50000)
zone_emploi$statistic #Zoning quality 
# 4 centers : Saint-Denis, Saint-Paul, Saint-Pierre and Saint-Benoit
center_emploi<-ttwa(df=reunion_ttw,origin="HOME",
  destination="WORK",flow="FLOW",
  conti="CONTI",size_center=500000,
  list_center=c("97411","97415","97416","97410"))
center_emploi$statistic

Run the code above in your browser using DataLab