Learn R Programming

netseg (version 1.0-2)

EF3: Example data from Figure III of Echenique and Fryer (2006)

Description

Artificial example data from Echenique & Fryer (2006) Figure III representing a city with black and white neighbourhoods.

Usage

EF3

Arguments

Format

Object of class "igraph". An undirected network with vertex attributes:

  • name -- vertex names of the form "A1" in which letter and number indicate the position in the lattice

  • race -- values 1 or 2 indicate the two groups

Details

This data is taken from Echenique & Fryer (2006, figure III). The data represent a fictional city composed of 30 neighborhoods that are either black or white.

Examples

Run this code
if(requireNamespace("igraph", quietly = TRUE)) {
  set.seed(1)
  plot(
    EF3,
    layout = igraph::layout.fruchterman.reingold,
    vertex.color = igraph::V(EF3)$type+1,
    vertex.label.family = "",
    sub = "Source: Echenique & Fryer (2006)",
    main = "Neighborhood racial segregation\n in a fictional city"
  )
}

Run the code above in your browser using DataLab