Take Home Exercise 2

Author

Oh Jia Wen

Published

December 11, 2023

Modified

December 17, 2023

1. Overview

As city-wide urban infrastructures such as public bus, mass rapid transits, public utilities and roads become digital, data sets obtained could be used as a framework for tracking movement patterns through space and time.

1.1 The Task

This exercise aims to reveals the urban mobility patterns of public bus transit through geospatial data science and analysis (GDSA), and spatial interaction models. ars The original data was downloaded on 18th November 2023 from LTA DataMall under Section 2.6 - Passenger Volume by Origin Destination Bus Stops. It records the number of trips by weekdays and weekends from origin to destination bus stops. For the purpose of this exercise, we will be using the August data - origin_destination_bus_202308.csv for Weekday Morning Peak (6-9am).

2. Data preparation

2.1 Install R packages

The code chunk below uses pacman:: p_load() to load and install the following libraries:

  • ggpubr : Used to create and customize ggplot2-based publication ready plots

  • performance : Used for computing measures to access model quality that are not directly provided by R’s ‘base’ or ‘stats’ packages.

  • reshape2 : Used to restructure and aggregate data

  • sf : Used for geospatial data handling

  • sp : Used for spatial data

  • spdep : Used to create spatial weights matrix objects

  • sfdep : Used to integrate with 'sf' objects and the 'tidyverse'

  • stplanr : Used to create geographic ‘desire lines’ from origin-destination (OD) data

  • tidyverse: A collection of R packages use in everyday data analyses. It is able to support data science, data wrangling, and analysis

  • tmap : Used for thematic mapping where spatial data distributions are visualized.

pacman::p_load(ggpubr, performance, reshape2, sp, 
               sf, spdep, sfdep, stplanr, tidyverse, tmap)

2.2 Import and Load Dataset

For the purpose of this exercise, we will be using three data sets.

  • origin_destination_bus_202308.csv : A csv file containing information about all the bus stops currently being serviced by bus, which includes bus stop identifier, and location coordinates.

  • Bus Stop Location . A geospatial file retrieved from LTA DataMall

  • Master Plan 2019 Subzone Boundary : A polygon feature layer in ESRI shapefile format.

2.2.1 Importing Aspatial data

First, we will import the Passenger Volume by Origin Destination Bus Stops data set for August by using readr::read_csv() and store it in variable odbus. Also, we will be using glimpse() report to reveal the data type of each field.

Point to note: ORIGIN_PT_CODE and DESTINATION_PT_CODE are in <chr> format.

Show the code
odbus <- read_csv("data/aspatial/origin_destination_bus_202308.csv")
glimpse(odbus)
Rows: 5,709,512
Columns: 7
$ YEAR_MONTH          <chr> "2023-08", "2023-08", "2023-08", "2023-08", "2023-…
$ DAY_TYPE            <chr> "WEEKDAY", "WEEKENDS/HOLIDAY", "WEEKENDS/HOLIDAY",…
$ TIME_PER_HOUR       <dbl> 16, 16, 14, 14, 17, 17, 17, 17, 7, 17, 14, 10, 10,…
$ PT_TYPE             <chr> "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "…
$ ORIGIN_PT_CODE      <chr> "04168", "04168", "80119", "80119", "44069", "4406…
$ DESTINATION_PT_CODE <chr> "10051", "10051", "90079", "90079", "17229", "1722…
$ TOTAL_TRIPS         <dbl> 7, 2, 3, 10, 5, 4, 3, 22, 3, 3, 7, 1, 3, 1, 3, 1, …

2.2.2 Importing Geospatial data

Thereafter, we will import the Bus Stops Location and Master Plan 2019 Subzone Boundary.

2.2.2.1 Import Bus Stop data

We will be using sf::st_read() to import and sf::st_transform() to ensure that the projected coordinate system is in the right format before storing in variable busstop.

busstop <- st_read(dsn = "data/geospatial",layer = "BusStop") %>%
    st_transform(crs = 3414)
Reading layer `BusStop' from data source 
  `/Users/smu/Rworkshop/jiawenoh/ISSS624/Take-Home_Ex/Take-Home_Ex02/data/geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 5161 features and 3 fields
Geometry type: POINT
Dimension:     XY
Bounding box:  xmin: 3970.122 ymin: 26482.1 xmax: 48284.56 ymax: 52983.82
Projected CRS: SVY21

Also, we will be using glimpse() report to reveal the data type of each field.

glimpse(busstop)
Rows: 5,161
Columns: 4
$ BUS_STOP_N <chr> "22069", "32071", "44331", "96081", "11561", "66191", "2338…
$ BUS_ROOF_N <chr> "B06", "B23", "B01", "B05", "B05", "B03", "B02A", "B02", "B…
$ LOC_DESC   <chr> "OPP CEVA LOGISTICS", "AFT TRACK 13", "BLK 239", "GRACE IND…
$ geometry   <POINT [m]> POINT (13576.31 32883.65), POINT (13228.59 44206.38),…

2.2.2.2 Import MPSZ data

Similarily, we used sf::st_read() to import and sf::st_transform() to ensure that the projected coordinate system is in the right format before storing in variable mpsz.

mpsz <- st_read(dsn = "data/geospatial",
                   layer = "MPSZ-2019") %>%
  st_transform(crs = 3414)
Reading layer `MPSZ-2019' from data source 
  `/Users/smu/Rworkshop/jiawenoh/ISSS624/Take-Home_Ex/Take-Home_Ex02/data/geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 332 features and 6 fields
Geometry type: MULTIPOLYGON
Dimension:     XY
Bounding box:  xmin: 103.6057 ymin: 1.158699 xmax: 104.0885 ymax: 1.470775
Geodetic CRS:  WGS 84

We will be using glimpse() report to reveal the data type of each field

glimpse(mpsz)
Rows: 332
Columns: 7
$ SUBZONE_N  <chr> "MARINA EAST", "INSTITUTION HILL", "ROBERTSON QUAY", "JURON…
$ SUBZONE_C  <chr> "MESZ01", "RVSZ05", "SRSZ01", "WISZ01", "MUSZ02", "MPSZ05",…
$ PLN_AREA_N <chr> "MARINA EAST", "RIVER VALLEY", "SINGAPORE RIVER", "WESTERN …
$ PLN_AREA_C <chr> "ME", "RV", "SR", "WI", "MU", "MP", "WI", "WI", "SI", "SI",…
$ REGION_N   <chr> "CENTRAL REGION", "CENTRAL REGION", "CENTRAL REGION", "WEST…
$ REGION_C   <chr> "CR", "CR", "CR", "WR", "CR", "CR", "WR", "WR", "CR", "CR",…
$ geometry   <MULTIPOLYGON [m]> MULTIPOLYGON (((33222.98 29..., MULTIPOLYGON (…

2.3 Data Wrangling

Looking at section 2.2.1, we noticed a few problem:

  • ORIGIN_PT_CODE : is in <chr> format

  • DESTINATION_PT_CODE : is in <chr> format

We will be using dplyr::mutate() to convert the <chr> data type to <fct> and store it in a new variable odbus_new.

Show the code
odbus_new <- odbus %>%
 mutate(ORIGIN_PT_CODE = as.factor(ORIGIN_PT_CODE),
        DESTINATION_PT_CODE = as.factor(DESTINATION_PT_CODE))

glimpse(odbus_new)
Rows: 5,709,512
Columns: 7
$ YEAR_MONTH          <chr> "2023-08", "2023-08", "2023-08", "2023-08", "2023-…
$ DAY_TYPE            <chr> "WEEKDAY", "WEEKENDS/HOLIDAY", "WEEKENDS/HOLIDAY",…
$ TIME_PER_HOUR       <dbl> 16, 16, 14, 14, 17, 17, 17, 17, 7, 17, 14, 10, 10,…
$ PT_TYPE             <chr> "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "BUS", "…
$ ORIGIN_PT_CODE      <fct> 04168, 04168, 80119, 80119, 44069, 44069, 20281, 2…
$ DESTINATION_PT_CODE <fct> 10051, 10051, 90079, 90079, 17229, 17229, 20141, 2…
$ TOTAL_TRIPS         <dbl> 7, 2, 3, 10, 5, 4, 3, 22, 3, 3, 7, 1, 3, 1, 3, 1, …

Additionally, we confirmed that there are no missing values in the odbus_new data set.

any(is.na(odbus_new))
[1] FALSE

2.3.1 Data Extraction

2.3.1.1 Analytical Hexagon

To get a better representative of the traffic analysis zone (TAZ), we will create an analytical hexagon grid. With reference from Urban Data Palette, we will used the code chunk below and execute in the following sequence:

  • st_make_grid() : create a regular grid of spatial polygons. To reflect the distance from centre of the hexagon to its edge (375m), we will revise the cell width and height to c(750,750) to reflect the full diameter.

  • st_sf() : convert the honeycomb grid object to an sf object. We used [mpsz$geometry] to identify hexagon grid that intersects.

  • rowid_to_column() : add rowid as a column. Values in this column are the row IDs of each grid cell.

  • lengths(st_intersects()) : assigns the number of bus stops for each cell to a new column named ‘bus_stops’ in hex_grid. st_intersects() checks for intersections between two spatial objects.

  • as.factor() : to coverts the ‘grid_id’ column from<int> to <fct>

  • tmap_options(check.and.fix = TRUE) : forcing the polygons to be closed

  • tm_shape() + tm_polygons() : plot the honeycomb grid cells as polygons

Show the code
#create regular grid 
honeycomb = st_make_grid(mpsz,c(750,750),what = "polygons", square = FALSE)

#convert our honeycomb grid into an sf object and add rowid
hex_grid <- st_sf(honeycomb[mpsz$geometry]) %>%
  rowid_to_column('grid_id')

#add no. of bus stops into hex_grid data frame
hex_grid$bus_stops = lengths(st_intersects(hex_grid, busstop))

#convert grid_id from int to fct 
hex_grid$grid_id <- as.factor(hex_grid$grid_id)

#plotting of Master Plan 2019 Subzone Boundary in analytical hexagon
tmap_options(check.and.fix = TRUE) #force close polygon 
tm_shape(hex_grid) +
  tm_polygons() +
 tm_layout(main.title = "Analytical Hexagon Grid",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) +
tm_borders(alpha = 0.3)

2.3.1.2 Commuting Flow

Through the previous exercise in Take Home Exercise 1, we were able to have a better understanding of the commuting flows. We noticed that the Peak hour period for Weekdays were generally higher as compared to Weekends, which we believe, could bring us more insights. As such, we will focus on our commuting flow at Weekday Morning Peak (6-9am).

The code is extracted in the following sequence:

  • filter() is used to extract subset of data for the DAY_TYPE and TIME_PER_HOUR

  • between() is used to express a range condition for the TIME_PER_HOUR

  • group_by() is used to grouped data. In our code, we will be grouping it based on ORIGIN_PT_CODE and DESTINATION_PT_CODE

  • summarise() is used to sum the total number of trips

  • arrange(desc()) is used to sort in descending order

  • ungroup() is used to end a definition, often use with group_by()

Thereafter, we will save a copy of the output in rds format called wkd6_9.

Show the code
wkd6_9 <- odbus_new %>%
  filter(DAY_TYPE == "WEEKDAY",
         between(TIME_PER_HOUR, 6, 9)) %>%
  group_by(ORIGIN_PT_CODE, DESTINATION_PT_CODE) %>%
  summarise(TRIPS = sum(TOTAL_TRIPS)) %>%
  arrange(desc(TRIPS)) %>%
  ungroup()

#save a copy in RDS format 
write_rds(wkd6_9, "data/rds/wkd6_9.rds")

As we are not executing the code chunk above, we will load wkd6_9 into the R environment.

wkd6_9 <- read_rds("data/rds/wkd6_9.rds")

2.3.1.3 Visualing bus stops in hexagon grid

After importing the bus stop location in Section 2.2.2.1, we will create a visualization to observe the number of bus stops in each hexagon grid (grid_id). To get a better contrast, we incorporated RcolorBrewer into our code by adding a purple palette.

Show the code
#plot bus stop counts on hexagon layer 
  tm_shape(hex_grid) +
  tm_fill(col = "bus_stops",palette = "Purples") +
  tm_layout(main.title = "Number of Bus Stops in Hexagon Grid",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) +
  tm_borders(alpha =0.3)

On average, we could see that most of the hexagon grids contain 6 to 10 bus stops with lesser dark colors hexagon grid as the data value increases. With the use of hexagon, we are able to identify the nearest neighbor by their common boundaries, infer that there might be some degree of influence as the colors does not differ significantly.

  • tm_shape() + Base Layer : Main plotting method. Used to specify a shape object.
-   Base Layer includes:

    -   `tm_polygons()`  - Create a polygon later (with borders)

    -   `tm_symbols()`  - Create a layer of symbols

    -    `tm_lines()`  - Create a layer of lines

    -    `tm_raster()`  - Create a raster layer

    -    `tm_text()`  - Create a layer of text labels

    -   `tm_basemap()`  - Create a layer of basemap tiles

    -   `tm_tiles()`  - Create a layer of overlay tiles
  • Aesthetics derived layers, which includes:
-   `tm_fill()` :  - Create a polygon layer (without borders)

-   `tm_borders()` :  - Create a polygon borders

-   `tm_bubbles()` :  - Create a layer of bubbles

-   `tm_squares()` :  - Create a layer of squares

-   `tm_dots()` :  - Create a layer of dots

-   `tm_markers()` :  - Create a layer of markers

-   `tm_iso()` :  - Create a layer of iso/contour lines

-   `tm_rgb()` :  - Create a raster layer of an image
  • Facets

  • Attributes

  • Layout elements

  • Tmap_mode

For more information, click here.

2.4 Data Generation

2.4.1 Combining Busstop and mpsz

After extracting the commuting flow for Weekday Morning Peak, we will combine it into busstop sf data frame. To ensure distinct flows, we will use the unique() function into our code.

busstop_mpsz <- st_intersection(busstop, hex_grid) %>%
    select(BUS_STOP_N, grid_id) %>%
  st_drop_geometry()

Thereafter, we will perform the left_join() function twice. Firstly, we will join it based on ORIGIN_PT_CODE , where we will rename some of the columns and retain unique records. Then, we will join it based on DESTINATION_PT_CODE which we have renamed it as DESTIN_BS earlier.

After joining the data, we used drop_na() to removes any rows with missing values, and to group the data by origin and destination ID while computing the sum of trips for each origin-destination pair, saved under MORNING_PEAK. Lastly, a copy of the output - od_data was saved in RDS format.

Show the code
#left_join based on Origin_PT_Code
od_data <- left_join(wkd6_9 , busstop_mpsz,
            by = c("ORIGIN_PT_CODE" = "BUS_STOP_N")) %>%
  rename(ORIGIN_BS = ORIGIN_PT_CODE,
         ORIGIN_ID = grid_id,
         DESTIN_BS = DESTINATION_PT_CODE) %>%
  unique() %>%
  ungroup()

#left_join based on Destination_PT_code(rename as DESTIN_BS)
od_data <- left_join(od_data , busstop_mpsz,
            by = c("DESTIN_BS" = "BUS_STOP_N")) %>%
  unique() %>%
  ungroup()

# compute the morning peak trips between origin and destination grid
od_data <- od_data %>%
  rename(DESTIN_ID = grid_id) %>%
  drop_na() %>%
  group_by(ORIGIN_ID, DESTIN_ID) %>%
  summarise(MORNING_PEAK = sum(TRIPS)) %>%
  ungroup()

#save a copy in RDS format
write_rds(od_data, "data/rds/od_data.rds")

We will load od_data into the R environment.

od_data <- read_rds("data/rds/od_data.rds")

2.4.2 Visualizing Spatial Interaction

With the joined data - od_data, we will prepare a desire line by using the stplanr package by removing the intra-zonal flows, creating the desire lines, and to visualize the desire lines.

2.4.2.1 Remove Intra-zonal flows

Intra-zonal flows refer to trips that take place within the same zone or area. In our context, it refers to the passenger commuting within the hexagon grid of 750m. As we will not be plotting the intra-zonal flows, the following code chunk below are used to only keep rows where the Origin_ID is not equal to the DESTIN_ID.

od_data1 <- od_data[od_data$ORIGIN_ID!=od_data$DESTIN_ID,]

2.4.2.2 Create desire lines

Using the stplanr::od2line() function, we will create a line object where the flow refers to the data containing origin and destination information, zones refers to spatial data presenting the zone geometries, while zone_code refers to the specific column in our zones data that could identify the zone. In our case, it will be the grid_id. The output will be saved as flowLine.

flowLine <- od2line(flow = od_data1, 
                    zones = hex_grid,
                    zone_code = "grid_id")

2.4.2.3 Visualizing desire lines

After creating the flowLine , we will visualize the resulting desire lines. Notably, quantiles provide a detailed picture of the how the MORNING_PEAK values are spread across. It allows us to identify if the flow is concentrated or evenly distributed across the network.

quantile(flowLine$MORNING_PEAK,
         probs = c(0.8, 0.9, 0.95, 0.99, 1))
    80%     90%     95%     99%    100% 
  255.0   677.0  1479.0  6219.5 89347.0 

From the results above, we will use tmap package to plot our visualization for the 80th percentile, 95% percentile, and 99% percentile. We began by plotting the background map tm_shape(hex_grid) + tm_polygons(), and filtering the flowLine to include flows based on the quantiles identified earlier. This allows us to focus on the most significant flow movements.

Afterwards, we used tm_shape() + tm_lines() to add flow lines into our visualization. In addition, we reduce the transparency of the lines to get a clear view of the flow. Low alpha results in transparency.

Show the code
tm_shape(hex_grid) +
  tm_polygons(col = 'grey95') +
flowLine %>%
    filter(MORNING_PEAK >= 255) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",  #set line width 
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of the top 20% ",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE)

Show the code
tm_shape(hex_grid) +
  tm_polygons(col = 'grey95') +
flowLine %>%
    filter(MORNING_PEAK >= 1479) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of the top 5% ",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE)

Show the code
tm_shape(hex_grid) +
  tm_polygons(col = 'grey95') +
flowLine %>%
    filter(MORNING_PEAK >= 6220) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of the top 1% ",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE)

Based on the commuting flow of the 80th percentile, we could observe various clusters within the region, and commuters spend more travelling from origin to destination. From the thickness of the line, we could infer that the commuters travels the same route frequently - from the North region to the East region, and from the West region to the Central Region. It is interesting to note that commuters like myself do not travel from the West region to the East region frequently.

Looking at the 95th percentile , the flow movement decreased significantly. The commuting flow around the central region has dropped. Moreover, we are able to observe the flow from the North region to the East region, while we noticed that there are significant flow from the North region to the North-East region.

Narrowing it down to the top 1% (99% percentile), we are able identify that the longest commuting distance is from the North region to the North-East region. Also, commuters tend to travel within their region, travelling a short distance from origin to destination.

3. Data Integration

After looking at the commuting flows, we are interested to know why people traveled for a particular distance, and the purpose of their trip. Could it be for work? Could it be for school? As such, we will be importing eight collected data - Business, Entertainment, Food & Beverages, Financial Service, Leisure & Recreation, Retails, HDB and School as part of our mobility study.

3.1 Importing Collected Data

Similar to section 2.2, we used sf::st_read() to import and sf::st_transform() to ensure that the projected coordinate system is in the right format before storing it. With the exception of HDB and School data where we used readr::read_csv() to import and sf::st_as_sf() to converting an aspatial data into sf tibble data.frame.

Before we determine which exploratory variables are attractive or propulsive to a commuter, we plot a map based on the variables. We created a 3-layers plot by looking at :

  • Layer 1: Our base layer (hex_grid) . Hexagon grid with bus_stop density.

  • Layer 2: Commuting flow movement. Identified based on purple lines.

  • Layer 3: Variables’ location. Identified based on blue dots.

By looking at the intersections between these layers, and our prior knowledge, we could better assemble the variables.

Show the code
business_sf <- st_read(dsn = "data/geospatial",
                      layer = "Business") %>%
      st_transform(crs = 3414)
Reading layer `Business' from data source 
  `/Users/smu/Rworkshop/jiawenoh/ISSS624/Take-Home_Ex/Take-Home_Ex02/data/geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 6550 features and 3 fields
Geometry type: POINT
Dimension:     XY
Bounding box:  xmin: 3669.148 ymin: 25408.41 xmax: 47034.83 ymax: 50148.54
Projected CRS: SVY21 / Singapore TM
Show the code
#plotting point symbol map with analytical hexagon grid
tmap_options(check.and.fix = TRUE)
tm_shape(hex_grid) +
  tm_fill(col = "bus_stops",palette = "Purples") +
tm_borders(alpha = 0.3) +
  flowLine %>%
    filter(MORNING_PEAK >= 1000) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of \n passengers with >1,000 trips",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) +
tm_shape(business_sf) +
  tm_dots(col = "lightblue") +
  tm_layout(main.title = "Business Spot",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) 

Show the code
entertn_sf <- st_read(dsn = "data/geospatial",
                      layer = "entertn") %>%
      st_transform(crs = 3414)
Reading layer `entertn' from data source 
  `/Users/smu/Rworkshop/jiawenoh/ISSS624/Take-Home_Ex/Take-Home_Ex02/data/geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 114 features and 3 fields
Geometry type: POINT
Dimension:     XY
Bounding box:  xmin: 10809.34 ymin: 26528.63 xmax: 41600.62 ymax: 46375.77
Projected CRS: SVY21 / Singapore TM
Show the code
#plotting point symbol map with analytical hexagon grid
tmap_options(check.and.fix = TRUE)
tm_shape(hex_grid) +
  tm_fill(col = "bus_stops",palette = "Purples") +
tm_borders(alpha = 0.3) +
    flowLine %>%
    filter(MORNING_PEAK >= 1000) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of \n passengers with >1,000 trips",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) +
tm_shape(entertn_sf) +
  tm_dots(col = "lightblue") +
  tm_layout(main.title = "Entertainment Spot",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) 

Show the code
fnb_sf <- st_read(dsn = "data/geospatial",
                      layer = "F&B") %>%
      st_transform(crs = 3414)
Reading layer `F&B' from data source 
  `/Users/smu/Rworkshop/jiawenoh/ISSS624/Take-Home_Ex/Take-Home_Ex02/data/geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 1919 features and 3 fields
Geometry type: POINT
Dimension:     XY
Bounding box:  xmin: 6010.495 ymin: 25343.27 xmax: 45462.43 ymax: 48796.21
Projected CRS: SVY21 / Singapore TM
Show the code
#plotting point symbol map with analytical hexagon grid
tmap_options(check.and.fix = TRUE)
tm_shape(hex_grid) +
  tm_fill(col = "bus_stops",palette = "Purples") +
tm_borders(alpha = 0.3) +
    flowLine %>%
    filter(MORNING_PEAK >= 1000) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of \n passengers with >1,000 trips",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) +
tm_shape(fnb_sf) +
  tm_dots(col = "lightblue") +
  tm_layout(main.title = "Food and Beverages Spot",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) 

Show the code
finserv_sf <- st_read(dsn = "data/geospatial",
                      layer = "FinServ") %>%
      st_transform(crs = 3414)
Reading layer `FinServ' from data source 
  `/Users/smu/Rworkshop/jiawenoh/ISSS624/Take-Home_Ex/Take-Home_Ex02/data/geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 3320 features and 3 fields
Geometry type: POINT
Dimension:     XY
Bounding box:  xmin: 4881.527 ymin: 25171.88 xmax: 46526.16 ymax: 49338.02
Projected CRS: SVY21 / Singapore TM
Show the code
#plotting point symbol map with analytical hexagon grid
tmap_options(check.and.fix = TRUE)
tm_shape(hex_grid) +
  tm_fill(col = "bus_stops",palette = "Purples") +
tm_borders(alpha = 0.3) +
    flowLine %>%
    filter(MORNING_PEAK >= 1000) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of \n passengers with >1,000 trips",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) +
tm_shape(finserv_sf) +
  tm_dots(col = "lightblue") +
  tm_layout(main.title = "Financial Service Spot",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) 

note that some residential area have commercial etc, would be a mixed development but we will include it in our analysis.

Show the code
#import hdb.csv and tidy data 
hdb <- read_csv("data/aspatial/hdb.csv") %>%
  rename(latitude = "lat",
         longitude = "lng") %>%
  filter(residential == "Y") 

#converting an aspatial data into sf tibble data.frame
hdb_sf <- st_as_sf(hdb, 
                       coords = c("longitude", "latitude"),
                       crs=4326) %>%
  st_transform(crs = 3414)

#identify intersection between hdb and hex_grid to compute total_dwelling units 
hdb_sf_sum <- st_intersection(hdb_sf, hex_grid) %>%
  group_by(grid_id) %>%
  summarise(
    HDB_SUM = sum(total_dwelling_units)
  ) %>%
  ungroup() 

#plotting point symbol map with analytical hexagon grid
tmap_options(check.and.fix = TRUE)
tm_shape(hex_grid) +
  tm_fill(col = "bus_stops",palette = "Purples") +
tm_borders(alpha = 0.3) +
    flowLine %>%
    filter(MORNING_PEAK >= 1000) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of \n passengers with >1,000 trips",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) +
tm_shape(hdb_sf_sum) +
  tm_dots(col = "lightblue") +
  tm_layout(main.title = "HDB Spot",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) 

Show the code
lnr_sf <- st_read(dsn = "data/geospatial",
                      layer = "Liesure&Recreation") %>%
      st_transform(crs = 3414)
Reading layer `Liesure&Recreation' from data source 
  `/Users/smu/Rworkshop/jiawenoh/ISSS624/Take-Home_Ex/Take-Home_Ex02/data/geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 1217 features and 30 fields
Geometry type: POINT
Dimension:     XY
Bounding box:  xmin: 6010.495 ymin: 25134.28 xmax: 48439.77 ymax: 50078.88
Projected CRS: SVY21 / Singapore TM
Show the code
#plotting point symbol map with analytical hexagon grid
tmap_options(check.and.fix = TRUE)
tm_shape(hex_grid) +
  tm_fill(col = "bus_stops",palette = "Purples") +
tm_borders(alpha = 0.3) +
    flowLine %>%
    filter(MORNING_PEAK >= 1000) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of \n passengers with >1,000 trips",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) +
tm_shape(lnr_sf) +
  tm_dots(col = "lightblue") +
  tm_layout(main.title = "Leisure and Recreation Spot",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) 

Show the code
retail_sf <- st_read(dsn = "data/geospatial",
                      layer = "Retails") %>%
      st_transform(crs = 3414)
Reading layer `Retails' from data source 
  `/Users/smu/Rworkshop/jiawenoh/ISSS624/Take-Home_Ex/Take-Home_Ex02/data/geospatial' 
  using driver `ESRI Shapefile'
Simple feature collection with 37635 features and 3 fields
Geometry type: POINT
Dimension:     XY
Bounding box:  xmin: 4737.982 ymin: 25171.88 xmax: 48265.04 ymax: 50135.28
Projected CRS: SVY21 / Singapore TM
Show the code
#plotting point symbol map with analytical hexagon grid
tmap_options(check.and.fix = TRUE)
tm_shape(hex_grid) +
  tm_fill(col = "bus_stops",palette = "Purples") +
tm_borders(alpha = 0.3) +
    flowLine %>%
    filter(MORNING_PEAK >= 1000) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of \n passengers with >1,000 trips",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) +
tm_shape(retail_sf) +
  tm_dots(col = "lightblue") +
  tm_layout(main.title = "Retail Spot",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) 

Show the code
#import school.csv into R environment 
schools <- read_csv("data/aspatial/schools.csv") %>%
  rename(latitude = 'results.LATITUDE', longitude ='results.LONGITUDE') %>%
  select(postal_code, school_name, latitude, longitude)

#convert an aspatial data into sf tibble data frame
schools_sf <- st_as_sf(schools, 
                       coords = c("longitude", "latitude"),
                       crs=4326) %>%
  st_transform(crs = 3414)

#plotting point symbol map with analytical hexagon grid
tmap_options(check.and.fix = TRUE)
tm_shape(hex_grid) +
  tm_fill(col = "bus_stops",palette = "Purples") +
tm_borders(alpha = 0.3) +
    flowLine %>%
    filter(MORNING_PEAK >= 1000) %>%
tm_shape() +
  tm_lines(lwd = "MORNING_PEAK",
           col = "purple",
           style = "quantile",
           scale = c(0.1, 1, 3, 5, 7, 10),
           n = 6,
           alpha = 0.8) +
    tm_layout(main.title = "Commuting flow of \n passengers with >1,000 trips",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) +
tm_shape(schools_sf) +
  tm_dots(col = "lightblue") +
  tm_layout(main.title = "School Spot",
            main.title.position = "center",
            main.title.size = 1,
            legend.height = 0.35, 
            legend.width = 0.35,
            legend.outside = FALSE,
            legend.position = c("right", "bottom"),
            frame = FALSE) 

As we are focusing on the Weekday Morning Peak Period from 0600 to 0900, based on my own understanding, I would personally eliminate the Entertainment variables, and Leisure & Recreation as I believe that the operating hours then to begin near noon. However, if we look at the maps above, we could see that the Entertainment spot is clustered around the central region with a handful around Singapore. Thus, we will exclude Entertainment for further analysis.

Looking into the Leisure & Recreation tab, we noticed that there are more spots in this field than Entertainment. By looking at the data set we noticed that there are multiple gyms and recreation centres. However, both companies does not operate around the same time, which would affect the accuracy of the data. Upon a closer look on the data, we observed that there are handful of spot that falls besides the grid that contains a bus stop, making it seems inaccessible to commuters. Therefore, we will exclude Leisure and Recreation for further analysis.

While looking at the other variables, the Food & Beverage (F&B) spot and School spot caught my eyes. At first glance, I assumed the F&B includes stalls in Hawker Centres, or Coffee Shop as I was expecting a wide amount of network, knowing how Singaporean loves food and would queue for food. Afer a close examination at the data, it is based on fine dining, bar , and pub. Thus, we could safely assume that the operating hours begins from 11.00am. As such, we will exclude Food & Beverage from further analysis.

Moreover, it is interesting to note that the School spot intersects with multiple commuting flows with darker bus stop density and thick line width. Moving forward, we will focus on Business, Financial Services, HDB, Retail, and school as our propulsive and attractiveness variables.

3.2 Compute point-in-polygon count

After confirming the five variables, we will count the number of spot located inside the grid_id by performing a point-in-polygon count. We will used the length() of Base package and st_intersects() of sf package. Thereafter, we will compute and display the summary statistics of computed variables using summary().

Count number of Businesses in Hexagon Grid

hex_grid$`BUSINESS_COUNT`<- lengths(st_intersects(hex_grid, business_sf))

Summary Statistics

summary(hex_grid$BUSINESS_COUNT)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
  0.000   0.000   0.000   3.368   1.000 126.000 

Count number of Financial Services in Hexagon Grid

hex_grid$`finserv_COUNT`<- lengths(st_intersects(hex_grid, finserv_sf))

Summary Statistics

summary(hex_grid$finserv_COUNT)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
  0.000   0.000   0.000   1.707   0.000 176.000 

Count number of HDB in Hexagon Grid

Show the code
hdb_sf_units <- st_intersection(hdb_sf, hex_grid) %>%
  st_drop_geometry() %>%
  group_by(grid_id) %>%
  summarise(
    HDB_SUM = sum(total_dwelling_units)
  ) %>%
  ungroup() 

hex_grid <- left_join(hex_grid, hdb_sf_units, by = "grid_id") 
hex_grid$HDB_SUM <- replace_na(hex_grid$HDB_SUM, 0)

Summary Statistics

summary(hex_grid$HDB_SUM)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
    0.0     0.0     0.0   560.8     0.0  8324.0 

Count number of Retails in Hexagon Grid

hex_grid$`retail_COUNT`<- lengths(st_intersects(hex_grid, retail_sf))

Summary Statistics

summary(hex_grid$retail_COUNT)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
   0.00    0.00    0.00   19.35    6.00 1427.00 

Count number of School in Hexagon Grid

hex_grid$`school_COUNT`<- lengths(st_intersects(hex_grid, schools_sf))

Summary Statistics

summary(hex_grid$school_COUNT)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
 0.0000  0.0000  0.0000  0.1799  0.0000  5.0000 

From the above, we noticed that there are excessive 0 values in the field of each variables. Notably, we would still transform this field with log(). Thus, additional step is required to ensure that the 0 will be replaced with a value that is between 0 and 1.

4. Distance Matrix

Before we continue with the previous section, we will compute a distance matrix. It is a table that shows the distance between pairs of locations. In our context, we want to see the distance between one hexagonal grid to another.

4.1 Converting from sf data.table to SpatialPolygons Data Frame

To begin, we will use sp::as.Spatial() to convert hex_grid from sf tabble data frame to SpatialPolygonsDataFrame of sp object.

hex_grid_sp <- as(hex_grid, "Spatial")
hex_grid_sp
class       : SpatialPolygonsDataFrame 
features    : 1945 
extent      : 2292.538, 57042.54, 15315.71, 50606.24  (xmin, xmax, ymin, ymax)
crs         : +proj=tmerc +lat_0=1.36666666666667 +lon_0=103.833333333333 +k=1 +x_0=28001.642 +y_0=38744.572 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs 
variables   : 7
names       : grid_id, bus_stops, BUSINESS_COUNT, finserv_COUNT, HDB_SUM, retail_COUNT, school_COUNT 
min values  :       1,         0,              0,             0,       0,            0,            0 
max values  :     999,        20,            126,           176,    8324,         1427,            5 

4.2 Computing the distance matrix

Next, we compute the Euclidean distance between the centroids of the hexagonal grid with the use of spDists() of sp package. head() is also used to examine a 10x10 matrix.

Show the code
dist <- spDists(hex_grid_sp, 
                longlat = FALSE)
head(dist, n=c(10, 10))
          [,1]     [,2]     [,3]     [,4]     [,5]     [,6]     [,7]     [,8]
 [1,]    0.000 1299.038 2598.076 3897.114 5196.152  750.000 1984.313 3269.174
 [2,] 1299.038    0.000 1299.038 2598.076 3897.114  750.000  750.000 1984.313
 [3,] 2598.076 1299.038    0.000 1299.038 2598.076 1984.313  750.000  750.000
 [4,] 3897.114 2598.076 1299.038    0.000 1299.038 3269.174 1984.313  750.000
 [5,] 5196.152 3897.114 2598.076 1299.038    0.000 4562.072 3269.174 1984.313
 [6,]  750.000  750.000 1984.313 3269.174 4562.072    0.000 1299.038 2598.076
 [7,] 1984.313  750.000  750.000 1984.313 3269.174 1299.038    0.000 1299.038
 [8,] 3269.174 1984.313  750.000  750.000 1984.313 2598.076 1299.038    0.000
 [9,] 4562.072 3269.174 1984.313  750.000  750.000 3897.114 2598.076 1299.038
[10,] 5857.687 4562.072 3269.174 1984.313  750.000 5196.152 3897.114 2598.076
          [,9]    [,10]
 [1,] 4562.072 5857.687
 [2,] 3269.174 4562.072
 [3,] 1984.313 3269.174
 [4,]  750.000 1984.313
 [5,]  750.000  750.000
 [6,] 3897.114 5196.152
 [7,] 2598.076 3897.114
 [8,] 1299.038 2598.076
 [9,]    0.000 1299.038
[10,] 1299.038    0.000

From the matrix, we noted that the headers for the columns and row are not labelled . Therefore, we will add a label into the distance matrix.

4.2.1 Label of Column and Row headers

To tidy, we will create a list sorted according to the distance matrix by grid_id.

id_names <- hex_grid$grid_id

Next, we will attach grid_id to row and column for distance matrix matching.

colnames(dist) <- paste0(id_names)
rownames(dist) <- paste0(id_names)

4.2.2 Pivoting distance value by Grid_ID

Then, we will pivot the distance matrix into a long table by using the row and column of grid_id.

distPair <- melt(dist) %>%
  rename(dist = value)
head(distPair, 10)
   Var1 Var2     dist
1     1    1    0.000
2     2    1 1299.038
3     3    1 2598.076
4     4    1 3897.114
5     5    1 5196.152
6     6    1  750.000
7     7    1 1984.313
8     8    1 3269.174
9     9    1 4562.072
10   10    1 5857.687

From the data frame above, we noticed that the intra-zonal distance within the zone is zero. As such, we will append a constant value to replace the intra-zonal distance of 0 by performing the following:

  • Find out the minimum value of the distance by using summary()
  • Input a constant distance value
  • Rename original and destination fields
Show the code
# find minimum distance value
distPair %>%
  filter(dist > 0) %>%
  summary()
      Var1           Var2           dist      
 Min.   :   1   Min.   :   1   Min.   :  750  
 1st Qu.: 487   1st Qu.: 487   1st Qu.:10894  
 Median : 973   Median : 973   Median :17477  
 Mean   : 973   Mean   : 973   Mean   :18932  
 3rd Qu.:1459   3rd Qu.:1459   3rd Qu.:25401  
 Max.   :1945   Max.   :1945   Max.   :57862  
Show the code
distPair$dist <- ifelse(distPair$dist == 0,
                        200, distPair$dist)

# to check the distPair data frame
distPair %>%
  summary()
      Var1           Var2           dist      
 Min.   :   1   Min.   :   1   Min.   :  200  
 1st Qu.: 487   1st Qu.: 487   1st Qu.:10894  
 Median : 973   Median : 973   Median :17477  
 Mean   : 973   Mean   : 973   Mean   :18923  
 3rd Qu.:1459   3rd Qu.:1459   3rd Qu.:25401  
 Max.   :1945   Max.   :1945   Max.   :57862  
#to rename the fields
distPair <- distPair %>%
  rename(orig = Var1,
         dest = Var2)

#save output to rds format. 
write_rds(distPair, "data/rds/distPair.rds") 

We determined that the the minimum distance is 750m. Although we could put any values that are smaller than 750m to represent the intra-zonal distance, we input an arbitrary value of 200m that is smaller than the radius of the hexagon. We will save a copy of distPair output to RDS and re-load it into the R environment.

distPair <- read_rds("data/rds/distPair.rds")

4.3 Prepare flow data

To get the flow data, we will compute the flow movement between and within the hexagonal grid by using the code chunk below. Output will be saved as flow_data. In addition, we will use head() to display the top 10 data frame.

Show the code
flow_data <- od_data1 %>%
  group_by(ORIGIN_ID, DESTIN_ID) %>% 
  summarize(TRIPS = sum(MORNING_PEAK)) 


head(flow_data,10)
# A tibble: 10 × 3
# Groups:   ORIGIN_ID [3]
   ORIGIN_ID DESTIN_ID TRIPS
   <fct>     <fct>     <dbl>
 1 21        49            1
 2 21        60            2
 3 21        69            2
 4 21        82            1
 5 21        86           56
 6 29        60           13
 7 29        86           37
 8 40        72            1
 9 40        87           32
10 40        100           9

4.3.1 Separate Intra-flow

We will use ifelse() function to add three new fields in the dataframe with the condition that if Origin ID match Destination ID , zero will be forced.

Show the code
flow_data$FlowNoIntra <- ifelse(
  flow_data$ORIGIN_ID == flow_data$DESTIN_ID, 
  0, flow_data$TRIPS)
flow_data$offset <- ifelse(
  flow_data$ORIGIN_ID == flow_data$DESTIN_ID, 
  0.000001, 1)

glimpse(flow_data)
Rows: 65,076
Columns: 5
Groups: ORIGIN_ID [820]
$ ORIGIN_ID   <fct> 21, 21, 21, 21, 21, 29, 29, 40, 40, 40, 40, 41, 41, 41, 41…
$ DESTIN_ID   <fct> 49, 60, 69, 82, 86, 60, 86, 72, 87, 100, 253, 40, 49, 50, …
$ TRIPS       <dbl> 1, 2, 2, 1, 56, 13, 37, 1, 32, 9, 2, 21, 3, 5, 4, 1, 7, 36…
$ FlowNoIntra <dbl> 1, 2, 2, 1, 56, 13, 37, 1, 32, 9, 2, 21, 3, 5, 4, 1, 7, 36…
$ offset      <dbl> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1…

4.3.2 Combine flow_data and distPair

Before we join the data, we have to ensure that the data type is identical. As seen above, the flow_data for the grids are in <fct> format. Therefore, we will look at distPair.

glimpse(distPair)
Rows: 3,783,025
Columns: 3
$ orig <int> 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19…
$ dest <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,…
$ dist <dbl> 200.000, 1299.038, 2598.076, 3897.114, 5196.152, 750.000, 1984.31…

From the results above, we note that the orig and dest are in <int> format. Similar, to section 2.3, we need to convert the data type from <int> to <fct>. After converting, we will run glimpse() again to check .

Show the code
#convert distPair from int to fct 
distPair$orig <- as.factor(distPair$orig)
distPair$dest <- as.factor(distPair$dest)

glimpse(distPair)
Rows: 3,783,025
Columns: 3
$ orig <fct> 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19…
$ dest <fct> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,…
$ dist <dbl> 200.000, 1299.038, 2598.076, 3897.114, 5196.152, 750.000, 1984.31…

Now, we are ready to perform a dplyr::left_join() to flow_data dataframe and distPair dataframe. The output will be saved as flow_data1.

flow_data1 <- flow_data %>%
  left_join (distPair,
             by = c("ORIGIN_ID" = "orig",
                    "DESTIN_ID" = "dest"))

4.4 Preparing Origin and Destination Attributes

Next, we will add the origin and destination attributes by joinining it to the hex_grid data. We will process in two steps:

  • Add Origin attrbitues through flow_data using hex_grid by performing left_join()

  • Using the previous result, perform another left_join() to add destination attributes.

In addition, we tidy the data by renaming columns to include a prefix. Origin attributes will be re-labeled as ORIGIN_XX, while destination attributes will be re-labeled as DESTIN_XX. As we do not need the bus_stop count and geometry, we will drop the columns.

Show the code
#left join based on origin attributes 
flow_data2 <- flow_data1 %>%
  left_join(hex_grid,
            by = c(ORIGIN_ID = "grid_id")) %>%
    rename(ORIGIN_BUSINESS = BUSINESS_COUNT,
         ORIGIN_FINSER = finserv_COUNT,
         ORIGIN_HDB = HDB_SUM,
         ORIGIN_RETAIL = retail_COUNT,
         ORIGIN_SCHOOLS =school_COUNT
         ) %>%
  select(-c(bus_stops)) 

#left join based on destination attributes
flow_data2 <- flow_data2 %>%
  left_join(hex_grid,
            by = c(DESTIN_ID = "grid_id")) %>%
    rename(DESTIN_BUSINESS = BUSINESS_COUNT,
         DESTIN_FINSER = finserv_COUNT,
         DESTIN_HDB = HDB_SUM,
         DESTIN_RETAIL = retail_COUNT,
         DESTIN_SCHOOLS =school_COUNT
         ) %>%
  select(-c(bus_stops)) %>%
  select(-c(10,16))

5. Calibrating Spatial Interaction Models

Spatial interaction describe quantitatively the flow of people, material, or information between locations in geographical space.In this section, we will be looking at gravity models using the glm() function in R, namely:

  • Unconstrained Spatial Interaction Model

  • Origin Constrained Spatial Interaction Model

  • Destination Constrained Spatial Interaction Model

  • Doubly Constrained Spatial Interaction Model

5.1 Visualizing dependent variable

Before we run our models, we will do a quick visualization to visualize the distribution, and the relation between the dependent variable and one of the key independent variable in Spatial Interaction Model, namely distance.

Show the code
ggplot(data = flow_data2,
       aes(x = TRIPS)) +
  geom_histogram() +
  labs(title ="Distribution of Dependent Variable") +
  theme_minimal()

From the graph above, we noticed that the distribution is highly skewed and does not resembled a normal distribution. We will move on to visualize the relation.

Show the code
ggplot(data = flow_data2,
       aes(x = dist,
           y = TRIPS)) +
  geom_point() +
  geom_smooth(method = lm) +
  labs(title ="Relation between Dependent and Independent Variable") +
  theme_minimal()

Based on the visualization above, it is difficult to determine if it resemble linear relationship. Therefore, we will use the log transformed version of both the dependent and independent variables, to see if they have a linear relationship.

Show the code
ggplot(data = flow_data2,
       aes(x = log(dist),
           y = log(TRIPS))) +
  geom_point() +
  geom_smooth(method = lm) +
  labs(title ="Relation between Dependent and Independent Variable (log)") +
  theme_minimal()

From the graph above, we are able to visualize a better linear relationship in comparison to the previous scatterplot. Also ,as observe earlier , we can confirmed that as the number of trips decreases, as the distance increases.

5.2 Checking for variables with zero values

Since Poisson Regression is based of log and log 0 is undefined, it is important for us to ensure to ensure that our exploratory variables does not contain any 0 values We will used the summary() of Base R to compute the summary statistics of all variables in the flow_data2 data frame.

summary(flow_data2)
   ORIGIN_ID       DESTIN_ID         TRIPS          FlowNoIntra     
 1542   :  285   1234   :  364   Min.   :    1.0   Min.   :    1.0  
 1105   :  284   1210   :  355   1st Qu.:    7.0   1st Qu.:    7.0  
 1234   :  283   1233   :  342   Median :   37.0   Median :   37.0  
 1255   :  282   1212   :  317   Mean   :  378.9   Mean   :  378.9  
 1215   :  281   1542   :  299   3rd Qu.:  178.0   3rd Qu.:  178.0  
 1218   :  280   1105   :  298   Max.   :89347.0   Max.   :89347.0  
 (Other):63381   (Other):63101                                      
     offset       dist       ORIGIN_BUSINESS   ORIGIN_FINSER       ORIGIN_HDB  
 Min.   :1   Min.   :  750   Min.   :  0.000   Min.   :  0.000   Min.   :   0  
 1st Qu.:1   1st Qu.: 3000   1st Qu.:  0.000   1st Qu.:  0.000   1st Qu.:   0  
 Median :1   Median : 5408   Median :  1.000   Median :  3.000   Median :1052  
 Mean   :1   Mean   : 6280   Mean   :  6.571   Mean   :  8.105   Mean   :1848  
 3rd Qu.:1   3rd Qu.: 8842   3rd Qu.:  6.000   3rd Qu.:  8.000   3rd Qu.:3371  
 Max.   :1   Max.   :25200   Max.   :126.000   Max.   :176.000   Max.   :8324  
                                                                               
 ORIGIN_RETAIL     ORIGIN_SCHOOLS   DESTIN_BUSINESS   DESTIN_FINSER    
 Min.   :   0.00   Min.   :0.0000   Min.   :  0.000   Min.   :  0.000  
 1st Qu.:   7.00   1st Qu.:0.0000   1st Qu.:  0.000   1st Qu.:  0.000  
 Median :  29.00   Median :0.0000   Median :  1.000   Median :  3.000  
 Mean   :  90.61   Mean   :0.5865   Mean   :  7.353   Mean   :  8.997  
 3rd Qu.:  91.00   3rd Qu.:1.0000   3rd Qu.:  7.000   3rd Qu.:  9.000  
 Max.   :1427.00   Max.   :5.0000   Max.   :126.000   Max.   :176.000  
                                                                       
   DESTIN_HDB   DESTIN_RETAIL     DESTIN_SCHOOLS  
 Min.   :   0   Min.   :   0.00   Min.   :0.0000  
 1st Qu.:   0   1st Qu.:   7.00   1st Qu.:0.0000  
 Median : 839   Median :  29.00   Median :0.0000  
 Mean   :1741   Mean   :  97.05   Mean   :0.5577  
 3rd Qu.:3239   3rd Qu.:  97.00   3rd Qu.:1.0000  
 Max.   :8324   Max.   :1427.00   Max.   :5.0000  
                                                  

From the summary statistics, we confirmed that we have removed intra-flow as the min of FlowNoIntra is 1. However, all our variables - ORIGIN_BUSINESS, ORIGIN_FINSER, ORIGIN_HDB, ORIGIN_RETAIL, ORIGIN_SCHOOLS, DESTIN_BUSINESS, DESTIN_FINSER, DESTIN_HDB, DESTIN_RETAIL, DESTIN_SCHOOLS contains 0 values.

As such, we will use the code chunk below to replace it with 0.99.

Show the code
#ORIGIN_BUSINESS
flow_data2$ORIGIN_BUSINESS <- ifelse(
  flow_data2$ORIGIN_BUSINESS == 0,
  0.99, flow_data2$ORIGIN_BUSINESS)

#ORIGIN_FINSER 
flow_data2$ORIGIN_FINSER  <- ifelse(
  flow_data2$ORIGIN_FINSER == 0,
  0.99, flow_data2$ORIGIN_FINSER)

#ORIGIN_HDB
flow_data2$ORIGIN_HDB  <- ifelse(
  flow_data2$ORIGIN_HDB == 0,
  0.99, flow_data2$ORIGIN_HDB)

#ORIGIN_RETAIL
flow_data2$ORIGIN_RETAIL  <- ifelse(
  flow_data2$ORIGIN_RETAIL == 0,
  0.99, flow_data2$ORIGIN_RETAIL)

#ORIGIN_SCHOOLS
flow_data2$ORIGIN_SCHOOLS  <- ifelse(
  flow_data2$ORIGIN_SCHOOLS == 0,
  0.99, flow_data2$ORIGIN_SCHOOLS)

#DESTIN_BUSINESS
flow_data2$DESTIN_BUSINESS <- ifelse(
  flow_data2$DESTIN_BUSINESS == 0,
  0.99, flow_data2$DESTIN_BUSINESS)

#DESTIN_FINSER 
flow_data2$DESTIN_FINSER  <- ifelse(
  flow_data2$DESTIN_FINSER == 0,
  0.99, flow_data2$DESTIN_FINSER)

#DESTIN_HDB
flow_data2$DESTIN_HDB  <- ifelse(
  flow_data2$DESTIN_HDB == 0,
  0.99, flow_data2$DESTIN_HDB)

#DESTIN_RETAIL
flow_data2$DESTIN_RETAIL  <- ifelse(
  flow_data2$DESTIN_RETAIL == 0,
  0.99, flow_data2$DESTIN_RETAIL)

#DESTIN_SCHOOLS
flow_data2$DESTIN_SCHOOLS  <- ifelse(
  flow_data2$DESTIN_SCHOOLS == 0,
  0.99, flow_data2$DESTIN_SCHOOLS)

To confirm , we re-run the summary() before saving the output in RDS format and re-load it into R.

summary(flow_data2)
   ORIGIN_ID       DESTIN_ID         TRIPS          FlowNoIntra     
 1542   :  285   1234   :  364   Min.   :    1.0   Min.   :    1.0  
 1105   :  284   1210   :  355   1st Qu.:    7.0   1st Qu.:    7.0  
 1234   :  283   1233   :  342   Median :   37.0   Median :   37.0  
 1255   :  282   1212   :  317   Mean   :  378.9   Mean   :  378.9  
 1215   :  281   1542   :  299   3rd Qu.:  178.0   3rd Qu.:  178.0  
 1218   :  280   1105   :  298   Max.   :89347.0   Max.   :89347.0  
 (Other):63381   (Other):63101                                      
     offset       dist       ORIGIN_BUSINESS   ORIGIN_FINSER    
 Min.   :1   Min.   :  750   Min.   :  0.990   Min.   :  0.990  
 1st Qu.:1   1st Qu.: 3000   1st Qu.:  0.990   1st Qu.:  0.990  
 Median :1   Median : 5408   Median :  1.000   Median :  3.000  
 Mean   :1   Mean   : 6280   Mean   :  6.986   Mean   :  8.375  
 3rd Qu.:1   3rd Qu.: 8842   3rd Qu.:  6.000   3rd Qu.:  8.000  
 Max.   :1   Max.   :25200   Max.   :126.000   Max.   :176.000  
                                                                
   ORIGIN_HDB      ORIGIN_RETAIL     ORIGIN_SCHOOLS  DESTIN_BUSINESS  
 Min.   :   0.99   Min.   :   0.99   Min.   :0.990   Min.   :  0.990  
 1st Qu.:   0.99   1st Qu.:   7.00   1st Qu.:0.990   1st Qu.:  0.990  
 Median :1052.00   Median :  29.00   Median :0.990   Median :  1.000  
 Mean   :1848.02   Mean   :  90.67   Mean   :1.183   Mean   :  7.747  
 3rd Qu.:3371.00   3rd Qu.:  91.00   3rd Qu.:1.000   3rd Qu.:  7.000  
 Max.   :8324.00   Max.   :1427.00   Max.   :5.000   Max.   :126.000  
                                                                      
 DESTIN_FINSER       DESTIN_HDB      DESTIN_RETAIL     DESTIN_SCHOOLS 
 Min.   :  0.990   Min.   :   0.99   Min.   :   0.99   Min.   :0.990  
 1st Qu.:  0.990   1st Qu.:   0.99   1st Qu.:   7.00   1st Qu.:0.990  
 Median :  3.000   Median : 839.00   Median :  29.00   Median :0.990  
 Mean   :  9.266   Mean   :1740.90   Mean   :  97.12   Mean   :1.173  
 3rd Qu.:  9.000   3rd Qu.:3239.00   3rd Qu.:  97.00   3rd Qu.:1.000  
 Max.   :176.000   Max.   :8324.00   Max.   :1427.00   Max.   :5.000  
                                                                      
write_rds(flow_data2, "data/rds/flow_data2.rds")
flow_data2 <- read_rds("data/rds/flow_data2.rds")

5.3 Unconstrained Spatial Interaction Model

The first model that we will looking at will be the Unconstrained model. There are no external restrictions on the flow value. Thus, any origin can send flows to any destination based solely on the attraction potential of the destination and the distance. We will save the output - uncSIM into a RDS format.

Show the code
uncSIM <- glm(formula = TRIPS ~ 
                log(ORIGIN_BUSINESS) + 
                log(DESTIN_BUSINESS) +
                log(ORIGIN_FINSER) + 
                log(DESTIN_FINSER) +
                log(ORIGIN_HDB) + 
                log(DESTIN_HDB) +
                log(ORIGIN_RETAIL) + 
                log(DESTIN_RETAIL) +
                log(ORIGIN_SCHOOLS) + 
                log(DESTIN_SCHOOLS) +
                log(dist),
              family = poisson(link = "log"),
              data = flow_data2,
              na.action = na.exclude)
#save RDS
write_rds(uncSIM, "data/rds/uncSIM.rds")

As we are not executing the code chunk above, we will load uncSIM into the R environment.

uncSIM <- read_rds("data/rds/uncSIM.rds")

Also, we will run uncSIM to view the result.

uncSIM

Call:  glm(formula = TRIPS ~ log(ORIGIN_BUSINESS) + log(DESTIN_BUSINESS) + 
    log(ORIGIN_FINSER) + log(DESTIN_FINSER) + log(ORIGIN_HDB) + 
    log(DESTIN_HDB) + log(ORIGIN_RETAIL) + log(DESTIN_RETAIL) + 
    log(ORIGIN_SCHOOLS) + log(DESTIN_SCHOOLS) + log(dist), family = poisson(link = "log"), 
    data = flow_data2, na.action = na.exclude)

Coefficients:
         (Intercept)  log(ORIGIN_BUSINESS)  log(DESTIN_BUSINESS)  
            16.04170              -0.13531               0.04363  
  log(ORIGIN_FINSER)    log(DESTIN_FINSER)       log(ORIGIN_HDB)  
             0.16080               0.31340               0.15163  
     log(DESTIN_HDB)    log(ORIGIN_RETAIL)    log(DESTIN_RETAIL)  
             0.01262              -0.03330               0.01250  
 log(ORIGIN_SCHOOLS)   log(DESTIN_SCHOOLS)             log(dist)  
             0.27070               0.41777              -1.46077  

Degrees of Freedom: 65075 Total (i.e. Null);  65064 Residual
Null Deviance:      98390000 
Residual Deviance: 50260000     AIC: 50610000

Goodness of fit

With the aid of R-squared statistics , we will write a function called CalcRSquared to compute the proportion of variance in the dependent variables. The R2 indicates the degree to which the model explains the observed variation in the dependent variable, relative to the mean. The R2 always lies between 0 and 1, where a higher R2 indicates a better model fit.

#create function to calculate r-squared value 
CalcRSquared <- function(observed,estimated){
  r <- cor(observed,estimated)
  R2 <- r^2
  R2
}

After we create the function, we can examine how the constraints hold.

CalcRSquared(uncSIM$data$TRIPS, uncSIM$fitted.values)
[1] 0.2214091

With reference to the R-squared above, we can conclude that the model accounts for about 22% of the variation of flows in the system. Since the p-value is less than the alpha of 0.05, we will reject the null hypothesis that the mean is a good estimator for the explanatory variables. However, it does not bring in more insights on which variables to look at since the value of R2 tells that the ten explanatory variables can account for 22% of the variation.

5.4 Origin (Production) constrained SIM

The second model that we are looking at will be the Origin Constrained model. The flow value are based on the destination attributes. We will save the output - orcSIM into a RDS format and re-load into the R environment.

Show the code
orcSIM <- glm(formula = TRIPS ~ 
                 ORIGIN_ID +
                 log(DESTIN_BUSINESS) +
                 log(DESTIN_FINSER) +
                 log(DESTIN_HDB) +
                 log(DESTIN_RETAIL) +
                 log(DESTIN_SCHOOLS) +
                 log(dist),
              family = poisson(link = "log"),
              data = flow_data2,
              na.action = na.exclude)
#save RDS
write_rds(orcSIM, "data/rds/orcSIM.rds")

As we are not executing the code chunk above, we will load orcSIM into the R environment.

orcSIM <- read_rds("data/rds/orcSIM.rds")

Click on to view the summary statistics of orcSIM.

summary(orcSIM)

Call:
glm(formula = TRIPS ~ ORIGIN_ID + log(DESTIN_BUSINESS) + log(DESTIN_FINSER) + 
    log(DESTIN_HDB) + log(DESTIN_RETAIL) + log(DESTIN_SCHOOLS) + 
    log(dist), family = poisson(link = "log"), data = flow_data2, 
    na.action = na.exclude)

Deviance Residuals: 
    Min       1Q   Median       3Q      Max  
-167.73   -12.12    -5.30     0.71   602.94  

Coefficients:
                       Estimate Std. Error   z value Pr(>|z|)    
(Intercept)           1.424e+01  1.270e-01   112.140  < 2e-16 ***
ORIGIN_ID29           9.195e-01  1.901e-01     4.838 1.31e-06 ***
ORIGIN_ID40           2.705e-01  1.971e-01     1.372 0.170012    
ORIGIN_ID41          -1.193e+00  1.683e-01    -7.086 1.38e-12 ***
ORIGIN_ID48           1.184e-01  1.503e-01     0.788 0.430564    
ORIGIN_ID49           1.059e+00  1.296e-01     8.168 3.14e-16 ***
ORIGIN_ID50           2.458e+00  1.290e-01    19.057  < 2e-16 ***
ORIGIN_ID51           6.960e-03  1.363e-01     0.051 0.959282    
ORIGIN_ID59           5.665e-01  1.423e-01     3.980 6.90e-05 ***
ORIGIN_ID60           2.524e-01  1.309e-01     1.927 0.053939 .  
ORIGIN_ID61           2.643e-01  1.481e-01     1.785 0.074342 .  
ORIGIN_ID62           2.600e+00  1.277e-01    20.368  < 2e-16 ***
ORIGIN_ID63          -4.636e-01  1.443e-01    -3.213 0.001315 ** 
ORIGIN_ID69           2.833e+00  1.280e-01    22.137  < 2e-16 ***
ORIGIN_ID70           1.182e-01  1.437e-01     0.822 0.410828    
ORIGIN_ID71           1.361e-01  1.365e-01     0.997 0.318865    
ORIGIN_ID72           1.951e+00  1.283e-01    15.201  < 2e-16 ***
ORIGIN_ID73          -5.100e-01  1.451e-01    -3.515 0.000440 ***
ORIGIN_ID74          -3.007e-01  1.362e-01    -2.208 0.027271 *  
ORIGIN_ID82           1.783e+00  1.346e-01    13.248  < 2e-16 ***
ORIGIN_ID83           3.973e-01  1.371e-01     2.897 0.003769 ** 
ORIGIN_ID85           5.809e-01  1.324e-01     4.387 1.15e-05 ***
ORIGIN_ID86           1.202e+00  1.290e-01     9.316  < 2e-16 ***
ORIGIN_ID87           3.656e+00  1.271e-01    28.762  < 2e-16 ***
ORIGIN_ID98          -6.709e-01  1.437e-01    -4.668 3.04e-06 ***
ORIGIN_ID99          -2.073e-01  1.364e-01    -1.521 0.128338    
ORIGIN_ID100          5.381e-01  1.316e-01     4.088 4.35e-05 ***
ORIGIN_ID109         -3.549e-02  1.835e-01    -0.193 0.846636    
ORIGIN_ID111          5.308e-01  1.333e-01     3.983 6.80e-05 ***
ORIGIN_ID112          2.881e+00  1.272e-01    22.643  < 2e-16 ***
ORIGIN_ID113         -1.430e+00  1.923e-01    -7.437 1.03e-13 ***
ORIGIN_ID125          3.451e+00  1.272e-01    27.135  < 2e-16 ***
ORIGIN_ID126          7.945e-01  1.295e-01     6.133 8.62e-10 ***
ORIGIN_ID135          5.401e-01  1.536e-01     3.516 0.000438 ***
ORIGIN_ID136          3.280e+00  1.272e-01    25.785  < 2e-16 ***
ORIGIN_ID137          8.925e-01  1.295e-01     6.892 5.52e-12 ***
ORIGIN_ID138         -1.876e+00  2.738e-01    -6.851 7.36e-12 ***
ORIGIN_ID148         -9.606e-01  1.534e-01    -6.262 3.81e-10 ***
ORIGIN_ID149          9.456e-01  1.307e-01     7.233 4.74e-13 ***
ORIGIN_ID150          4.047e-02  1.750e-01     0.231 0.817089    
ORIGIN_ID159          1.270e+00  1.311e-01     9.692  < 2e-16 ***
ORIGIN_ID160          2.087e+00  1.276e-01    16.352  < 2e-16 ***
ORIGIN_ID161         -8.378e-02  1.386e-01    -0.604 0.545574    
ORIGIN_ID171         -7.177e-01  1.844e-01    -3.893 9.89e-05 ***
ORIGIN_ID172         -3.802e-02  1.361e-01    -0.279 0.779880    
ORIGIN_ID173         -1.692e-01  1.364e-01    -1.241 0.214671    
ORIGIN_ID185          8.855e-02  1.338e-01     0.662 0.508166    
ORIGIN_ID186          2.215e+00  1.274e-01    17.381  < 2e-16 ***
ORIGIN_ID201          8.325e-01  1.304e-01     6.385 1.72e-10 ***
ORIGIN_ID202          5.778e-01  1.366e-01     4.229 2.35e-05 ***
ORIGIN_ID203          7.298e-01  1.314e-01     5.555 2.78e-08 ***
ORIGIN_ID217          2.088e-01  1.383e-01     1.510 0.131047    
ORIGIN_ID218         -2.038e+00  1.811e-01   -11.254  < 2e-16 ***
ORIGIN_ID219          5.922e-01  1.321e-01     4.482 7.40e-06 ***
ORIGIN_ID220          2.549e-01  1.333e-01     1.912 0.055913 .  
ORIGIN_ID234          5.912e-01  1.306e-01     4.528 5.96e-06 ***
ORIGIN_ID235          1.493e-01  1.307e-01     1.142 0.253389    
ORIGIN_ID251          5.407e-01  1.340e-01     4.037 5.42e-05 ***
ORIGIN_ID252          1.709e-02  1.335e-01     0.128 0.898098    
ORIGIN_ID253          4.758e+00  1.270e-01    37.459  < 2e-16 ***
ORIGIN_ID254          3.962e-01  1.378e-01     2.875 0.004038 ** 
ORIGIN_ID255         -6.102e-01  2.959e-01    -2.062 0.039200 *  
ORIGIN_ID268          1.284e+00  1.315e-01     9.762  < 2e-16 ***
ORIGIN_ID269         -9.166e-01  1.413e-01    -6.488 8.70e-11 ***
ORIGIN_ID270          1.286e+00  1.277e-01    10.068  < 2e-16 ***
ORIGIN_ID272          1.274e+00  1.289e-01     9.878  < 2e-16 ***
ORIGIN_ID285          4.454e-01  1.395e-01     3.192 0.001414 ** 
ORIGIN_ID286          4.434e-01  1.321e-01     3.357 0.000789 ***
ORIGIN_ID287          3.244e-01  1.292e-01     2.510 0.012083 *  
ORIGIN_ID288          6.133e-01  1.350e-01     4.544 5.52e-06 ***
ORIGIN_ID289          2.099e+00  1.276e-01    16.445  < 2e-16 ***
ORIGIN_ID303         -2.570e-01  1.332e-01    -1.929 0.053698 .  
ORIGIN_ID304          2.182e-01  1.309e-01     1.668 0.095412 .  
ORIGIN_ID306          2.401e+00  1.276e-01    18.818  < 2e-16 ***
ORIGIN_ID307          1.476e+00  1.294e-01    11.406  < 2e-16 ***
ORIGIN_ID320          4.765e-02  1.385e-01     0.344 0.730808    
ORIGIN_ID321          6.211e-01  1.320e-01     4.704 2.55e-06 ***
ORIGIN_ID322          1.257e+00  1.281e-01     9.807  < 2e-16 ***
ORIGIN_ID323          4.618e+00  1.270e-01    36.348  < 2e-16 ***
ORIGIN_ID324          2.047e+00  1.282e-01    15.964  < 2e-16 ***
ORIGIN_ID325         -2.210e+00  2.877e-01    -7.680 1.59e-14 ***
ORIGIN_ID338          1.183e+00  1.292e-01     9.158  < 2e-16 ***
ORIGIN_ID339          9.123e-01  1.295e-01     7.047 1.83e-12 ***
ORIGIN_ID340          2.891e+00  1.271e-01    22.737  < 2e-16 ***
ORIGIN_ID341          4.101e+00  1.270e-01    32.281  < 2e-16 ***
ORIGIN_ID342          9.876e-01  1.293e-01     7.639 2.19e-14 ***
ORIGIN_ID343         -1.975e-01  1.404e-01    -1.407 0.159341    
ORIGIN_ID353         -2.922e-01  1.433e-01    -2.039 0.041451 *  
ORIGIN_ID354          8.103e-01  1.293e-01     6.265 3.72e-10 ***
ORIGIN_ID355          1.768e+00  1.275e-01    13.871  < 2e-16 ***
ORIGIN_ID356          3.822e+00  1.270e-01    30.084  < 2e-16 ***
ORIGIN_ID357          2.878e+00  1.273e-01    22.602  < 2e-16 ***
ORIGIN_ID358          6.044e-01  1.329e-01     4.546 5.46e-06 ***
ORIGIN_ID359          1.250e+00  1.295e-01     9.653  < 2e-16 ***
ORIGIN_ID360         -1.159e+00  2.404e-01    -4.821 1.43e-06 ***
ORIGIN_ID361         -9.272e-01  2.441e-01    -3.798 0.000146 ***
ORIGIN_ID370          1.911e-01  1.318e-01     1.449 0.147230    
ORIGIN_ID371         -3.997e-01  1.666e-01    -2.399 0.016442 *  
ORIGIN_ID372          3.809e+00  1.271e-01    29.979  < 2e-16 ***
ORIGIN_ID373          4.500e+00  1.270e-01    35.425  < 2e-16 ***
ORIGIN_ID375         -1.104e+00  1.532e-01    -7.204 5.84e-13 ***
ORIGIN_ID376         -1.661e+00  1.827e-01    -9.093  < 2e-16 ***
ORIGIN_ID378         -8.282e-01  1.602e-01    -5.171 2.33e-07 ***
ORIGIN_ID379          1.471e+00  1.343e-01    10.960  < 2e-16 ***
ORIGIN_ID386         -1.248e-01  1.387e-01    -0.900 0.368369    
ORIGIN_ID387         -2.971e-01  1.373e-01    -2.163 0.030555 *  
ORIGIN_ID388          1.684e+00  1.287e-01    13.080  < 2e-16 ***
ORIGIN_ID389          4.810e+00  1.270e-01    37.874  < 2e-16 ***
ORIGIN_ID390          4.067e+00  1.271e-01    32.011  < 2e-16 ***
ORIGIN_ID395         -1.773e+00  1.008e+00    -1.759 0.078542 .  
ORIGIN_ID396         -1.191e+00  1.803e-01    -6.604 4.00e-11 ***
ORIGIN_ID406         -1.615e+00  1.604e-01   -10.067  < 2e-16 ***
ORIGIN_ID407          1.219e+00  1.288e-01     9.459  < 2e-16 ***
ORIGIN_ID408          1.864e+00  1.273e-01    14.641  < 2e-16 ***
ORIGIN_ID409          3.187e+00  1.271e-01    25.080  < 2e-16 ***
ORIGIN_ID411         -2.225e+00  2.404e-01    -9.256  < 2e-16 ***
ORIGIN_ID416         -8.059e-01  1.674e-01    -4.813 1.48e-06 ***
ORIGIN_ID417          1.176e+00  1.623e-01     7.246 4.29e-13 ***
ORIGIN_ID424          2.209e-01  1.326e-01     1.666 0.095803 .  
ORIGIN_ID425          4.106e-01  1.295e-01     3.172 0.001516 ** 
ORIGIN_ID426          2.407e+00  1.271e-01    18.932  < 2e-16 ***
ORIGIN_ID427          2.040e+00  1.275e-01    16.000  < 2e-16 ***
ORIGIN_ID434         -1.041e-01  2.250e-01    -0.463 0.643652    
ORIGIN_ID435          1.622e+00  1.401e-01    11.578  < 2e-16 ***
ORIGIN_ID441          5.265e-02  1.348e-01     0.391 0.696052    
ORIGIN_ID442         -2.166e+00  1.796e-01   -12.059  < 2e-16 ***
ORIGIN_ID443          2.096e-01  1.294e-01     1.619 0.105389    
ORIGIN_ID444          4.011e+00  1.270e-01    31.576  < 2e-16 ***
ORIGIN_ID446         -1.028e-01  1.430e-01    -0.719 0.472337    
ORIGIN_ID462          1.282e+00  1.282e-01     9.999  < 2e-16 ***
ORIGIN_ID463          1.306e+00  1.278e-01    10.213  < 2e-16 ***
ORIGIN_ID464          2.583e+00  1.271e-01    20.314  < 2e-16 ***
ORIGIN_ID465          3.623e+00  1.271e-01    28.512  < 2e-16 ***
ORIGIN_ID467          3.765e+00  1.272e-01    29.604  < 2e-16 ***
ORIGIN_ID480          1.879e+00  1.279e-01    14.696  < 2e-16 ***
ORIGIN_ID481          2.477e+00  1.272e-01    19.481  < 2e-16 ***
ORIGIN_ID482          3.527e+00  1.271e-01    27.758  < 2e-16 ***
ORIGIN_ID483          3.933e+00  1.270e-01    30.959  < 2e-16 ***
ORIGIN_ID501         -1.369e+00  1.553e-01    -8.815  < 2e-16 ***
ORIGIN_ID502          3.564e+00  1.271e-01    28.048  < 2e-16 ***
ORIGIN_ID503          2.635e+00  1.272e-01    20.724  < 2e-16 ***
ORIGIN_ID504          3.909e+00  1.270e-01    30.768  < 2e-16 ***
ORIGIN_ID506          6.770e-01  1.309e-01     5.172 2.32e-07 ***
ORIGIN_ID521         -1.209e+00  1.643e-01    -7.359 1.85e-13 ***
ORIGIN_ID522          1.861e+00  1.274e-01    14.600  < 2e-16 ***
ORIGIN_ID523          2.670e+00  1.272e-01    20.990  < 2e-16 ***
ORIGIN_ID524          2.782e+00  1.271e-01    21.890  < 2e-16 ***
ORIGIN_ID543          2.490e+00  1.273e-01    19.569  < 2e-16 ***
ORIGIN_ID544          3.138e+00  1.271e-01    24.689  < 2e-16 ***
ORIGIN_ID546          8.645e-02  1.332e-01     0.649 0.516492    
ORIGIN_ID558          1.654e+00  1.278e-01    12.941  < 2e-16 ***
ORIGIN_ID559          5.835e-01  1.297e-01     4.499 6.84e-06 ***
ORIGIN_ID560          3.102e-01  1.285e-01     2.415 0.015747 *  
ORIGIN_ID561          3.463e+00  1.270e-01    27.256  < 2e-16 ***
ORIGIN_ID569         -2.673e-01  1.472e-01    -1.817 0.069249 .  
ORIGIN_ID575         -1.200e-01  1.343e-01    -0.894 0.371436    
ORIGIN_ID576          2.787e+00  1.272e-01    21.916  < 2e-16 ***
ORIGIN_ID577         -4.217e-01  1.299e-01    -3.245 0.001173 ** 
ORIGIN_ID578          3.116e+00  1.271e-01    24.527  < 2e-16 ***
ORIGIN_ID579          3.307e+00  1.271e-01    26.015  < 2e-16 ***
ORIGIN_ID581          4.773e+00  1.270e-01    37.570  < 2e-16 ***
ORIGIN_ID582          9.148e-01  1.335e-01     6.853 7.24e-12 ***
ORIGIN_ID594          3.485e+00  1.271e-01    27.429  < 2e-16 ***
ORIGIN_ID595          3.830e+00  1.270e-01    30.152  < 2e-16 ***
ORIGIN_ID596          3.054e+00  1.271e-01    24.029  < 2e-16 ***
ORIGIN_ID597          3.754e+00  1.271e-01    29.543  < 2e-16 ***
ORIGIN_ID598          2.729e+00  1.277e-01    21.380  < 2e-16 ***
ORIGIN_ID599          3.808e+00  1.271e-01    29.974  < 2e-16 ***
ORIGIN_ID600          4.133e+00  1.271e-01    32.514  < 2e-16 ***
ORIGIN_ID604         -2.569e+00  2.738e-01    -9.384  < 2e-16 ***
ORIGIN_ID609         -1.460e+00  1.499e-01    -9.744  < 2e-16 ***
ORIGIN_ID610          2.026e+00  1.273e-01    15.915  < 2e-16 ***
ORIGIN_ID611          1.152e+00  1.276e-01     9.027  < 2e-16 ***
ORIGIN_ID612          3.844e+00  1.270e-01    30.264  < 2e-16 ***
ORIGIN_ID613          3.425e+00  1.270e-01    26.961  < 2e-16 ***
ORIGIN_ID614          3.499e+00  1.271e-01    27.536  < 2e-16 ***
ORIGIN_ID615          4.801e+00  1.270e-01    37.792  < 2e-16 ***
ORIGIN_ID616          4.274e+00  1.270e-01    33.646  < 2e-16 ***
ORIGIN_ID617          8.834e-01  1.303e-01     6.782 1.19e-11 ***
ORIGIN_ID620          1.954e+00  1.279e-01    15.280  < 2e-16 ***
ORIGIN_ID624          1.119e-01  1.323e-01     0.845 0.397997    
ORIGIN_ID625          7.340e-01  1.309e-01     5.609 2.03e-08 ***
ORIGIN_ID626          2.485e+00  1.271e-01    19.550  < 2e-16 ***
ORIGIN_ID627          1.562e+00  1.273e-01    12.265  < 2e-16 ***
ORIGIN_ID628          3.293e+00  1.271e-01    25.919  < 2e-16 ***
ORIGIN_ID629          2.885e+00  1.271e-01    22.697  < 2e-16 ***
ORIGIN_ID630          2.384e+00  1.272e-01    18.741  < 2e-16 ***
ORIGIN_ID631          3.520e+00  1.271e-01    27.701  < 2e-16 ***
ORIGIN_ID632          3.764e+00  1.271e-01    29.619  < 2e-16 ***
ORIGIN_ID633          4.656e+00  1.271e-01    36.629  < 2e-16 ***
ORIGIN_ID635          7.308e-01  1.296e-01     5.639 1.71e-08 ***
ORIGIN_ID641          3.488e-01  1.312e-01     2.659 0.007828 ** 
ORIGIN_ID642          2.415e+00  1.272e-01    18.983  < 2e-16 ***
ORIGIN_ID643          1.232e+00  1.278e-01     9.638  < 2e-16 ***
ORIGIN_ID645          3.883e+00  1.270e-01    30.568  < 2e-16 ***
ORIGIN_ID646          3.235e+00  1.271e-01    25.450  < 2e-16 ***
ORIGIN_ID647          2.848e+00  1.271e-01    22.408  < 2e-16 ***
ORIGIN_ID649          3.596e+00  1.271e-01    28.286  < 2e-16 ***
ORIGIN_ID650          1.029e+00  1.299e-01     7.920 2.37e-15 ***
ORIGIN_ID651          4.534e-01  1.303e-01     3.479 0.000503 ***
ORIGIN_ID652         -7.966e-02  1.324e-01    -0.601 0.547528    
ORIGIN_ID658         -2.321e-01  1.347e-01    -1.723 0.084925 .  
ORIGIN_ID659          8.726e-01  1.281e-01     6.813 9.53e-12 ***
ORIGIN_ID660          2.377e+00  1.272e-01    18.692  < 2e-16 ***
ORIGIN_ID661          3.490e+00  1.271e-01    27.452  < 2e-16 ***
ORIGIN_ID662          3.684e+00  1.270e-01    29.000  < 2e-16 ***
ORIGIN_ID663          3.525e+00  1.271e-01    27.732  < 2e-16 ***
ORIGIN_ID665          3.738e+00  1.271e-01    29.415  < 2e-16 ***
ORIGIN_ID666          2.228e+00  1.273e-01    17.507  < 2e-16 ***
ORIGIN_ID667          2.899e+00  1.272e-01    22.791  < 2e-16 ***
ORIGIN_ID668          2.869e-01  1.308e-01     2.193 0.028287 *  
ORIGIN_ID669         -1.479e+00  1.492e-01    -9.911  < 2e-16 ***
ORIGIN_ID670         -5.947e-01  1.796e-01    -3.311 0.000928 ***
ORIGIN_ID676          2.390e+00  1.276e-01    18.722  < 2e-16 ***
ORIGIN_ID677          1.671e+00  1.274e-01    13.120  < 2e-16 ***
ORIGIN_ID678          9.307e-01  1.280e-01     7.270 3.59e-13 ***
ORIGIN_ID679          2.592e+00  1.272e-01    20.380  < 2e-16 ***
ORIGIN_ID680          3.357e+00  1.271e-01    26.418  < 2e-16 ***
ORIGIN_ID682          3.261e+00  1.271e-01    25.667  < 2e-16 ***
ORIGIN_ID683          3.502e+00  1.271e-01    27.557  < 2e-16 ***
ORIGIN_ID684          1.055e+00  1.284e-01     8.213  < 2e-16 ***
ORIGIN_ID685          1.957e+00  1.277e-01    15.333  < 2e-16 ***
ORIGIN_ID686         -2.417e-01  1.315e-01    -1.838 0.066119 .  
ORIGIN_ID687          1.158e+00  1.290e-01     8.980  < 2e-16 ***
ORIGIN_ID696          2.511e+00  1.275e-01    19.696  < 2e-16 ***
ORIGIN_ID697          2.986e+00  1.271e-01    23.498  < 2e-16 ***
ORIGIN_ID698          2.665e+00  1.271e-01    20.966  < 2e-16 ***
ORIGIN_ID699          1.300e+00  1.276e-01    10.186  < 2e-16 ***
ORIGIN_ID700          2.781e+00  1.271e-01    21.880  < 2e-16 ***
ORIGIN_ID701          2.842e+00  1.271e-01    22.354  < 2e-16 ***
ORIGIN_ID702          2.581e-01  1.287e-01     2.005 0.045015 *  
ORIGIN_ID703          3.462e+00  1.270e-01    27.254  < 2e-16 ***
ORIGIN_ID707         -6.093e-01  1.448e-01    -4.209 2.57e-05 ***
ORIGIN_ID716          1.399e+00  1.278e-01    10.949  < 2e-16 ***
ORIGIN_ID717          3.611e+00  1.271e-01    28.424  < 2e-16 ***
ORIGIN_ID718          4.515e+00  1.270e-01    35.550  < 2e-16 ***
ORIGIN_ID719          1.330e+00  1.285e-01    10.344  < 2e-16 ***
ORIGIN_ID720          1.386e+00  1.277e-01    10.852  < 2e-16 ***
ORIGIN_ID722          2.146e+00  1.273e-01    16.861  < 2e-16 ***
ORIGIN_ID723          3.789e+00  1.270e-01    29.823  < 2e-16 ***
ORIGIN_ID724          2.758e+00  1.273e-01    21.671  < 2e-16 ***
ORIGIN_ID726          5.532e-01  1.353e-01     4.088 4.35e-05 ***
ORIGIN_ID727          4.402e+00  1.270e-01    34.647  < 2e-16 ***
ORIGIN_ID728          3.073e+00  1.273e-01    24.134  < 2e-16 ***
ORIGIN_ID735         -1.787e+00  2.028e-01    -8.810  < 2e-16 ***
ORIGIN_ID736          2.246e+00  1.272e-01    17.659  < 2e-16 ***
ORIGIN_ID737          3.495e+00  1.270e-01    27.511  < 2e-16 ***
ORIGIN_ID738          2.898e+00  1.272e-01    22.792  < 2e-16 ***
ORIGIN_ID739          8.847e-01  1.290e-01     6.860 6.90e-12 ***
ORIGIN_ID740          1.074e+00  1.277e-01     8.410  < 2e-16 ***
ORIGIN_ID741          2.698e+00  1.271e-01    21.223  < 2e-16 ***
ORIGIN_ID742          1.408e+00  1.275e-01    11.041  < 2e-16 ***
ORIGIN_ID743          3.495e+00  1.271e-01    27.505  < 2e-16 ***
ORIGIN_ID747          2.301e-01  1.305e-01     1.763 0.077880 .  
ORIGIN_ID748          4.528e+00  1.270e-01    35.640  < 2e-16 ***
ORIGIN_ID757          1.892e+00  1.273e-01    14.868  < 2e-16 ***
ORIGIN_ID758          2.556e+00  1.271e-01    20.102  < 2e-16 ***
ORIGIN_ID759          2.779e+00  1.271e-01    21.862  < 2e-16 ***
ORIGIN_ID761          2.808e+00  1.271e-01    22.096  < 2e-16 ***
ORIGIN_ID762          8.118e-01  1.280e-01     6.342 2.27e-10 ***
ORIGIN_ID763          1.700e+00  1.275e-01    13.329  < 2e-16 ***
ORIGIN_ID764          3.923e+00  1.270e-01    30.884  < 2e-16 ***
ORIGIN_ID765          4.425e+00  1.271e-01    34.828  < 2e-16 ***
ORIGIN_ID767         -9.243e-01  2.095e-01    -4.411 1.03e-05 ***
ORIGIN_ID769          2.464e+00  1.272e-01    19.375  < 2e-16 ***
ORIGIN_ID770          4.845e+00  1.270e-01    38.140  < 2e-16 ***
ORIGIN_ID775          2.014e+00  1.273e-01    15.819  < 2e-16 ***
ORIGIN_ID776          5.414e-01  1.293e-01     4.186 2.84e-05 ***
ORIGIN_ID777          1.191e+00  1.275e-01     9.343  < 2e-16 ***
ORIGIN_ID778          2.148e+00  1.272e-01    16.891  < 2e-16 ***
ORIGIN_ID780          2.242e+00  1.272e-01    17.619  < 2e-16 ***
ORIGIN_ID782          3.081e+00  1.272e-01    24.219  < 2e-16 ***
ORIGIN_ID783          3.065e+00  1.272e-01    24.094  < 2e-16 ***
ORIGIN_ID787          3.844e+00  1.271e-01    30.258  < 2e-16 ***
ORIGIN_ID788          3.879e+00  1.270e-01    30.528  < 2e-16 ***
ORIGIN_ID795         -2.094e+00  2.224e-01    -9.415  < 2e-16 ***
ORIGIN_ID796          6.008e-01  1.289e-01     4.661 3.15e-06 ***
ORIGIN_ID797          1.795e+00  1.275e-01    14.077  < 2e-16 ***
ORIGIN_ID798          1.483e+00  1.274e-01    11.636  < 2e-16 ***
ORIGIN_ID799          3.157e+00  1.271e-01    24.843  < 2e-16 ***
ORIGIN_ID801          4.673e-01  1.308e-01     3.572 0.000354 ***
ORIGIN_ID802          5.374e+00  1.271e-01    42.285  < 2e-16 ***
ORIGIN_ID805          1.994e+00  1.283e-01    15.549  < 2e-16 ***
ORIGIN_ID807          3.155e+00  1.271e-01    24.825  < 2e-16 ***
ORIGIN_ID808          3.310e+00  1.271e-01    26.040  < 2e-16 ***
ORIGIN_ID813          9.730e-01  1.278e-01     7.614 2.66e-14 ***
ORIGIN_ID814         -1.663e-01  1.297e-01    -1.282 0.199847    
ORIGIN_ID815          2.794e+00  1.271e-01    21.983  < 2e-16 ***
ORIGIN_ID816          1.274e+00  1.275e-01     9.989  < 2e-16 ***
ORIGIN_ID817          2.854e+00  1.271e-01    22.454  < 2e-16 ***
ORIGIN_ID825          2.762e+00  1.272e-01    21.706  < 2e-16 ***
ORIGIN_ID826          3.510e+00  1.271e-01    27.621  < 2e-16 ***
ORIGIN_ID827         -4.657e-01  1.364e-01    -3.414 0.000640 ***
ORIGIN_ID831          3.219e+00  1.271e-01    25.333  < 2e-16 ***
ORIGIN_ID832          2.552e+00  1.271e-01    20.071  < 2e-16 ***
ORIGIN_ID833          3.231e+00  1.271e-01    25.428  < 2e-16 ***
ORIGIN_ID834          1.319e+00  1.275e-01    10.348  < 2e-16 ***
ORIGIN_ID842         -1.742e+00  1.880e-01    -9.266  < 2e-16 ***
ORIGIN_ID844          3.323e+00  1.271e-01    26.150  < 2e-16 ***
ORIGIN_ID845          3.391e+00  1.272e-01    26.667  < 2e-16 ***
ORIGIN_ID850          1.246e+00  1.278e-01     9.750  < 2e-16 ***
ORIGIN_ID851         -4.213e-01  1.361e-01    -3.096 0.001965 ** 
ORIGIN_ID852          1.662e+00  1.273e-01    13.062  < 2e-16 ***
ORIGIN_ID853          2.651e+00  1.271e-01    20.858  < 2e-16 ***
ORIGIN_ID854         -6.516e-03  1.294e-01    -0.050 0.959832    
ORIGIN_ID855          2.264e+00  1.272e-01    17.800  < 2e-16 ***
ORIGIN_ID861          3.175e-02  1.417e-01     0.224 0.822705    
ORIGIN_ID863          2.765e+00  1.272e-01    21.737  < 2e-16 ***
ORIGIN_ID864          4.810e+00  1.270e-01    37.866  < 2e-16 ***
ORIGIN_ID865          2.644e+00  1.274e-01    20.752  < 2e-16 ***
ORIGIN_ID869         -1.174e-01  1.350e-01    -0.870 0.384487    
ORIGIN_ID870         -5.962e-02  1.321e-01    -0.451 0.651792    
ORIGIN_ID871          3.250e+00  1.270e-01    25.582  < 2e-16 ***
ORIGIN_ID872          5.876e-01  1.279e-01     4.594 4.34e-06 ***
ORIGIN_ID873         -8.717e-01  1.368e-01    -6.373 1.85e-10 ***
ORIGIN_ID880         -1.237e+00  1.602e-01    -7.722 1.14e-14 ***
ORIGIN_ID882          3.751e+00  1.271e-01    29.523  < 2e-16 ***
ORIGIN_ID883          3.192e+00  1.271e-01    25.106  < 2e-16 ***
ORIGIN_ID887          1.907e+00  1.273e-01    14.975  < 2e-16 ***
ORIGIN_ID888          2.474e-01  1.286e-01     1.923 0.054430 .  
ORIGIN_ID889          1.297e-01  1.289e-01     1.006 0.314380    
ORIGIN_ID890          2.309e+00  1.271e-01    18.165  < 2e-16 ***
ORIGIN_ID891          9.666e-01  1.278e-01     7.566 3.84e-14 ***
ORIGIN_ID892          1.056e+00  1.277e-01     8.270  < 2e-16 ***
ORIGIN_ID899          6.734e-01  1.404e-01     4.796 1.62e-06 ***
ORIGIN_ID900          3.369e+00  1.272e-01    26.481  < 2e-16 ***
ORIGIN_ID901          4.298e+00  1.270e-01    33.831  < 2e-16 ***
ORIGIN_ID902          2.851e+00  1.274e-01    22.386  < 2e-16 ***
ORIGIN_ID905          1.283e+00  1.298e-01     9.883  < 2e-16 ***
ORIGIN_ID907          9.671e-01  1.274e-01     7.589 3.23e-14 ***
ORIGIN_ID908          3.222e+00  1.270e-01    25.363  < 2e-16 ***
ORIGIN_ID910          2.362e+00  1.271e-01    18.578  < 2e-16 ***
ORIGIN_ID917          1.419e-01  1.636e-01     0.867 0.385673    
ORIGIN_ID919          4.394e+00  1.270e-01    34.588  < 2e-16 ***
ORIGIN_ID920          4.183e+00  1.270e-01    32.929  < 2e-16 ***
ORIGIN_ID921          6.033e-01  1.302e-01     4.634 3.58e-06 ***
ORIGIN_ID925          1.278e+00  1.274e-01    10.033  < 2e-16 ***
ORIGIN_ID926          2.586e+00  1.271e-01    20.350  < 2e-16 ***
ORIGIN_ID927          2.197e+00  1.271e-01    17.283  < 2e-16 ***
ORIGIN_ID928          1.269e+00  1.273e-01     9.965  < 2e-16 ***
ORIGIN_ID937          2.125e-01  1.356e-01     1.567 0.117055    
ORIGIN_ID938          2.812e+00  1.274e-01    22.079  < 2e-16 ***
ORIGIN_ID939          4.273e+00  1.270e-01    33.639  < 2e-16 ***
ORIGIN_ID940          3.081e+00  1.272e-01    24.230  < 2e-16 ***
ORIGIN_ID941          6.273e-01  1.300e-01     4.827 1.38e-06 ***
ORIGIN_ID944          7.085e-01  1.278e-01     5.543 2.97e-08 ***
ORIGIN_ID945          1.515e+00  1.272e-01    11.906  < 2e-16 ***
ORIGIN_ID946          2.755e+00  1.271e-01    21.676  < 2e-16 ***
ORIGIN_ID947          1.468e+00  1.273e-01    11.529  < 2e-16 ***
ORIGIN_ID948          2.614e+00  1.271e-01    20.569  < 2e-16 ***
ORIGIN_ID949          7.329e-01  1.278e-01     5.734 9.79e-09 ***
ORIGIN_ID956         -5.090e-01  1.640e-01    -3.104 0.001908 ** 
ORIGIN_ID958          3.309e+00  1.271e-01    26.028  < 2e-16 ***
ORIGIN_ID959          3.945e+00  1.271e-01    31.050  < 2e-16 ***
ORIGIN_ID960          2.020e+00  1.275e-01    15.841  < 2e-16 ***
ORIGIN_ID961         -3.042e+00  4.649e-01    -6.544 6.00e-11 ***
ORIGIN_ID964          3.044e+00  1.271e-01    23.949  < 2e-16 ***
ORIGIN_ID965          2.656e+00  1.271e-01    20.898  < 2e-16 ***
ORIGIN_ID966          1.685e+00  1.276e-01    13.203  < 2e-16 ***
ORIGIN_ID967          1.099e+00  1.275e-01     8.617  < 2e-16 ***
ORIGIN_ID968          2.441e+00  1.271e-01    19.204  < 2e-16 ***
ORIGIN_ID975         -1.915e+00  2.277e-01    -8.411  < 2e-16 ***
ORIGIN_ID976         -2.208e-01  1.566e-01    -1.410 0.158588    
ORIGIN_ID978          3.503e+00  1.273e-01    27.513  < 2e-16 ***
ORIGIN_ID979          2.943e+00  1.277e-01    23.037  < 2e-16 ***
ORIGIN_ID980          2.059e+00  1.276e-01    16.136  < 2e-16 ***
ORIGIN_ID982          3.078e+00  1.271e-01    24.222  < 2e-16 ***
ORIGIN_ID983          1.971e+00  1.272e-01    15.499  < 2e-16 ***
ORIGIN_ID984          2.545e+00  1.271e-01    20.029  < 2e-16 ***
ORIGIN_ID985         -3.690e-02  1.287e-01    -0.287 0.774295    
ORIGIN_ID986          6.738e-02  1.284e-01     0.525 0.599602    
ORIGIN_ID987          1.570e-01  1.356e-01     1.157 0.247116    
ORIGIN_ID993         -2.362e+00  2.572e-01    -9.186  < 2e-16 ***
ORIGIN_ID997          2.970e+00  1.271e-01    23.358  < 2e-16 ***
ORIGIN_ID998         -7.652e-01  1.400e-01    -5.467 4.57e-08 ***
ORIGIN_ID999          8.354e-01  1.313e-01     6.361 2.01e-10 ***
ORIGIN_ID1002         1.907e+00  1.272e-01    14.994  < 2e-16 ***
ORIGIN_ID1003         3.059e+00  1.270e-01    24.081  < 2e-16 ***
ORIGIN_ID1004         4.255e-01  1.283e-01     3.316 0.000913 ***
ORIGIN_ID1006         2.037e+00  1.272e-01    16.017  < 2e-16 ***
ORIGIN_ID1013         4.877e-01  1.352e-01     3.607 0.000310 ***
ORIGIN_ID1016         7.120e-01  1.305e-01     5.457 4.84e-08 ***
ORIGIN_ID1017         4.119e+00  1.271e-01    32.420  < 2e-16 ***
ORIGIN_ID1018         1.641e+00  1.277e-01    12.849  < 2e-16 ***
ORIGIN_ID1021         1.379e+00  1.273e-01    10.836  < 2e-16 ***
ORIGIN_ID1022         2.447e+00  1.271e-01    19.256  < 2e-16 ***
ORIGIN_ID1023         1.183e+00  1.274e-01     9.289  < 2e-16 ***
ORIGIN_ID1024         1.459e+00  1.273e-01    11.462  < 2e-16 ***
ORIGIN_ID1026         8.553e-02  1.314e-01     0.651 0.515165    
ORIGIN_ID1027        -1.628e+00  1.861e-01    -8.746  < 2e-16 ***
ORIGIN_ID1031        -2.556e+00  2.177e-01   -11.744  < 2e-16 ***
ORIGIN_ID1032         3.333e+00  1.271e-01    26.222  < 2e-16 ***
ORIGIN_ID1036         4.052e+00  1.270e-01    31.895  < 2e-16 ***
ORIGIN_ID1037         2.898e+00  1.271e-01    22.792  < 2e-16 ***
ORIGIN_ID1040         3.342e+00  1.271e-01    26.306  < 2e-16 ***
ORIGIN_ID1041         3.096e+00  1.271e-01    24.365  < 2e-16 ***
ORIGIN_ID1042         2.725e+00  1.271e-01    21.446  < 2e-16 ***
ORIGIN_ID1043        -7.829e-01  1.308e-01    -5.985 2.17e-09 ***
ORIGIN_ID1045         7.679e-01  1.279e-01     6.002 1.95e-09 ***
ORIGIN_ID1046        -5.813e-01  1.357e-01    -4.283 1.84e-05 ***
ORIGIN_ID1051        -1.927e+00  1.775e-01   -10.855  < 2e-16 ***
ORIGIN_ID1052         2.122e+00  1.275e-01    16.651  < 2e-16 ***
ORIGIN_ID1053        -7.232e-02  1.315e-01    -0.550 0.582353    
ORIGIN_ID1055         1.743e+00  1.279e-01    13.629  < 2e-16 ***
ORIGIN_ID1056         3.835e+00  1.271e-01    30.184  < 2e-16 ***
ORIGIN_ID1060         2.417e+00  1.271e-01    19.015  < 2e-16 ***
ORIGIN_ID1061         3.103e+00  1.270e-01    24.422  < 2e-16 ***
ORIGIN_ID1062         1.975e+00  1.271e-01    15.533  < 2e-16 ***
ORIGIN_ID1063         1.038e+00  1.274e-01     8.151 3.60e-16 ***
ORIGIN_ID1064         1.770e+00  1.273e-01    13.903  < 2e-16 ***
ORIGIN_ID1066        -2.632e+00  2.013e-01   -13.074  < 2e-16 ***
ORIGIN_ID1068         1.418e-01  1.318e-01     1.076 0.282071    
ORIGIN_ID1070        -1.040e+00  1.411e-01    -7.373 1.67e-13 ***
ORIGIN_ID1072        -1.987e+00  1.727e-01   -11.506  < 2e-16 ***
ORIGIN_ID1073         1.692e+00  1.275e-01    13.276  < 2e-16 ***
ORIGIN_ID1074         2.787e+00  1.271e-01    21.924  < 2e-16 ***
ORIGIN_ID1075         3.073e+00  1.271e-01    24.176  < 2e-16 ***
ORIGIN_ID1076         6.116e-01  1.309e-01     4.673 2.97e-06 ***
ORIGIN_ID1081         2.582e+00  1.271e-01    20.319  < 2e-16 ***
ORIGIN_ID1082         3.236e+00  1.270e-01    25.474  < 2e-16 ***
ORIGIN_ID1083         1.011e+00  1.273e-01     7.942 1.98e-15 ***
ORIGIN_ID1084         1.035e+00  1.275e-01     8.118 4.74e-16 ***
ORIGIN_ID1085         2.374e+00  1.271e-01    18.676  < 2e-16 ***
ORIGIN_ID1088         2.359e+00  1.272e-01    18.548  < 2e-16 ***
ORIGIN_ID1089         2.128e+00  1.273e-01    16.715  < 2e-16 ***
ORIGIN_ID1090         1.835e+00  1.275e-01    14.394  < 2e-16 ***
ORIGIN_ID1092         1.241e+00  1.282e-01     9.677  < 2e-16 ***
ORIGIN_ID1094         3.859e+00  1.270e-01    30.373  < 2e-16 ***
ORIGIN_ID1095         2.659e+00  1.272e-01    20.906  < 2e-16 ***
ORIGIN_ID1096         3.284e+00  1.271e-01    25.831  < 2e-16 ***
ORIGIN_ID1102        -1.408e+00  1.366e-01   -10.306  < 2e-16 ***
ORIGIN_ID1103         2.243e+00  1.273e-01    17.616  < 2e-16 ***
ORIGIN_ID1104         1.866e+00  1.271e-01    14.680  < 2e-16 ***
ORIGIN_ID1105         2.526e+00  1.271e-01    19.877  < 2e-16 ***
ORIGIN_ID1106         1.628e+00  1.273e-01    12.788  < 2e-16 ***
ORIGIN_ID1108        -1.032e+00  1.355e-01    -7.616 2.61e-14 ***
ORIGIN_ID1109         2.085e+00  1.272e-01    16.389  < 2e-16 ***
ORIGIN_ID1110         1.671e+00  1.274e-01    13.119  < 2e-16 ***
ORIGIN_ID1111         1.495e+00  1.275e-01    11.728  < 2e-16 ***
ORIGIN_ID1112         1.738e-02  1.407e-01     0.124 0.901699    
ORIGIN_ID1113        -1.327e+00  1.716e-01    -7.732 1.06e-14 ***
ORIGIN_ID1114         2.237e+00  1.272e-01    17.583  < 2e-16 ***
ORIGIN_ID1115         2.810e+00  1.271e-01    22.101  < 2e-16 ***
ORIGIN_ID1116         3.289e+00  1.271e-01    25.881  < 2e-16 ***
ORIGIN_ID1117         4.309e+00  1.271e-01    33.914  < 2e-16 ***
ORIGIN_ID1118         2.719e-01  1.334e-01     2.039 0.041467 *  
ORIGIN_ID1125         2.028e+00  1.271e-01    15.953  < 2e-16 ***
ORIGIN_ID1126         2.047e+00  1.271e-01    16.103  < 2e-16 ***
ORIGIN_ID1127        -3.388e-01  1.284e-01    -2.638 0.008339 ** 
ORIGIN_ID1128         1.784e+00  1.272e-01    14.032  < 2e-16 ***
ORIGIN_ID1129         9.917e-01  1.276e-01     7.770 7.82e-15 ***
ORIGIN_ID1130         4.554e-01  1.279e-01     3.561 0.000370 ***
ORIGIN_ID1133         2.887e+00  1.271e-01    22.718  < 2e-16 ***
ORIGIN_ID1134         2.481e+00  1.272e-01    19.513  < 2e-16 ***
ORIGIN_ID1135         1.593e+00  1.278e-01    12.464  < 2e-16 ***
ORIGIN_ID1137         4.251e+00  1.270e-01    33.463  < 2e-16 ***
ORIGIN_ID1138         4.097e+00  1.270e-01    32.251  < 2e-16 ***
ORIGIN_ID1139         2.624e+00  1.272e-01    20.628  < 2e-16 ***
ORIGIN_ID1140         1.688e-01  1.388e-01     1.217 0.223734    
ORIGIN_ID1141         1.048e+00  1.334e-01     7.859 3.89e-15 ***
ORIGIN_ID1146         6.690e-01  1.278e-01     5.235 1.65e-07 ***
ORIGIN_ID1147         2.159e+00  1.271e-01    16.990  < 2e-16 ***
ORIGIN_ID1148         1.489e+00  1.272e-01    11.706  < 2e-16 ***
ORIGIN_ID1149         8.770e-01  1.278e-01     6.861 6.83e-12 ***
ORIGIN_ID1150         1.143e+00  1.274e-01     8.977  < 2e-16 ***
ORIGIN_ID1151         1.319e+00  1.273e-01    10.368  < 2e-16 ***
ORIGIN_ID1152         1.624e+00  1.272e-01    12.769  < 2e-16 ***
ORIGIN_ID1153         2.366e+00  1.271e-01    18.611  < 2e-16 ***
ORIGIN_ID1154         2.217e+00  1.272e-01    17.421  < 2e-16 ***
ORIGIN_ID1155         3.397e+00  1.271e-01    26.735  < 2e-16 ***
ORIGIN_ID1156         2.025e+00  1.273e-01    15.909  < 2e-16 ***
ORIGIN_ID1158         1.506e+00  1.279e-01    11.773  < 2e-16 ***
ORIGIN_ID1159         2.525e+00  1.272e-01    19.857  < 2e-16 ***
ORIGIN_ID1160         3.934e+00  1.270e-01    30.964  < 2e-16 ***
ORIGIN_ID1162         3.137e+00  1.279e-01    24.519  < 2e-16 ***
ORIGIN_ID1167         1.902e+00  1.271e-01    14.965  < 2e-16 ***
ORIGIN_ID1168         1.493e+00  1.272e-01    11.740  < 2e-16 ***
ORIGIN_ID1169         1.307e+00  1.272e-01    10.276  < 2e-16 ***
ORIGIN_ID1170         1.286e+00  1.272e-01    10.107  < 2e-16 ***
ORIGIN_ID1171         1.924e+00  1.271e-01    15.134  < 2e-16 ***
ORIGIN_ID1172         2.212e+00  1.273e-01    17.380  < 2e-16 ***
ORIGIN_ID1173         6.171e-01  1.276e-01     4.835 1.33e-06 ***
ORIGIN_ID1174         2.796e+00  1.271e-01    22.000  < 2e-16 ***
ORIGIN_ID1175         3.252e+00  1.271e-01    25.592  < 2e-16 ***
ORIGIN_ID1176         2.777e+00  1.271e-01    21.842  < 2e-16 ***
ORIGIN_ID1177        -3.267e-01  1.333e-01    -2.450 0.014273 *  
ORIGIN_ID1179         4.165e+00  1.270e-01    32.782  < 2e-16 ***
ORIGIN_ID1180         3.199e+00  1.271e-01    25.174  < 2e-16 ***
ORIGIN_ID1181         2.546e+00  1.273e-01    19.991  < 2e-16 ***
ORIGIN_ID1188         8.757e-01  1.278e-01     6.854 7.18e-12 ***
ORIGIN_ID1189         2.026e+00  1.271e-01    15.941  < 2e-16 ***
ORIGIN_ID1190         7.526e-01  1.273e-01     5.911 3.40e-09 ***
ORIGIN_ID1192         2.299e+00  1.271e-01    18.088  < 2e-16 ***
ORIGIN_ID1193         2.915e+00  1.270e-01    22.941  < 2e-16 ***
ORIGIN_ID1194         3.039e+00  1.271e-01    23.912  < 2e-16 ***
ORIGIN_ID1195         2.599e+00  1.271e-01    20.451  < 2e-16 ***
ORIGIN_ID1196         3.220e+00  1.271e-01    25.341  < 2e-16 ***
ORIGIN_ID1197         2.277e+00  1.271e-01    17.910  < 2e-16 ***
ORIGIN_ID1198         1.578e+00  1.274e-01    12.385  < 2e-16 ***
ORIGIN_ID1201         4.429e+00  1.270e-01    34.866  < 2e-16 ***
ORIGIN_ID1202         3.955e+00  1.271e-01    31.126  < 2e-16 ***
ORIGIN_ID1210         1.110e+00  1.273e-01     8.719  < 2e-16 ***
ORIGIN_ID1211         1.240e+00  1.272e-01     9.750  < 2e-16 ***
ORIGIN_ID1212         2.248e+00  1.271e-01    17.694  < 2e-16 ***
ORIGIN_ID1213         1.187e+00  1.273e-01     9.326  < 2e-16 ***
ORIGIN_ID1214         2.349e+00  1.271e-01    18.475  < 2e-16 ***
ORIGIN_ID1215         3.694e+00  1.270e-01    29.080  < 2e-16 ***
ORIGIN_ID1216         2.117e+00  1.271e-01    16.651  < 2e-16 ***
ORIGIN_ID1217         3.075e+00  1.271e-01    24.200  < 2e-16 ***
ORIGIN_ID1218         4.249e+00  1.270e-01    33.452  < 2e-16 ***
ORIGIN_ID1219         4.018e+00  1.270e-01    31.633  < 2e-16 ***
ORIGIN_ID1220         1.394e+00  1.278e-01    10.905  < 2e-16 ***
ORIGIN_ID1222         2.735e+00  1.273e-01    21.490  < 2e-16 ***
ORIGIN_ID1223         4.463e+00  1.270e-01    35.129  < 2e-16 ***
ORIGIN_ID1233         1.002e+00  1.273e-01     7.874 3.43e-15 ***
ORIGIN_ID1234         1.668e+00  1.271e-01    13.126  < 2e-16 ***
ORIGIN_ID1235         2.497e+00  1.271e-01    19.656  < 2e-16 ***
ORIGIN_ID1236         1.692e+00  1.272e-01    13.308  < 2e-16 ***
ORIGIN_ID1237         2.305e+00  1.271e-01    18.140  < 2e-16 ***
ORIGIN_ID1238         2.731e+00  1.271e-01    21.492  < 2e-16 ***
ORIGIN_ID1239         2.566e+00  1.271e-01    20.191  < 2e-16 ***
ORIGIN_ID1240         3.099e+00  1.271e-01    24.393  < 2e-16 ***
ORIGIN_ID1241         2.929e+00  1.271e-01    23.043  < 2e-16 ***
ORIGIN_ID1245         2.911e+00  1.272e-01    22.888  < 2e-16 ***
ORIGIN_ID1253        -2.881e+00  1.626e-01   -17.721  < 2e-16 ***
ORIGIN_ID1254        -3.057e-01  1.279e-01    -2.391 0.016825 *  
ORIGIN_ID1255         2.020e+00  1.271e-01    15.895  < 2e-16 ***
ORIGIN_ID1256         3.081e+00  1.271e-01    24.246  < 2e-16 ***
ORIGIN_ID1257         3.091e+00  1.270e-01    24.331  < 2e-16 ***
ORIGIN_ID1258         3.993e+00  1.270e-01    31.435  < 2e-16 ***
ORIGIN_ID1259         2.902e+00  1.271e-01    22.838  < 2e-16 ***
ORIGIN_ID1260         1.411e+00  1.273e-01    11.081  < 2e-16 ***
ORIGIN_ID1261         3.632e+00  1.270e-01    28.586  < 2e-16 ***
ORIGIN_ID1263         2.249e+00  1.273e-01    17.664  < 2e-16 ***
ORIGIN_ID1266         3.149e+00  1.272e-01    24.755  < 2e-16 ***
ORIGIN_ID1272        -3.939e-01  1.288e-01    -3.057 0.002237 ** 
ORIGIN_ID1273         4.776e-01  1.275e-01     3.746 0.000180 ***
ORIGIN_ID1274         1.742e+00  1.271e-01    13.705  < 2e-16 ***
ORIGIN_ID1275         1.926e+00  1.271e-01    15.152  < 2e-16 ***
ORIGIN_ID1276         2.904e+00  1.270e-01    22.860  < 2e-16 ***
ORIGIN_ID1277         2.711e+00  1.271e-01    21.334  < 2e-16 ***
ORIGIN_ID1278         1.071e+00  1.275e-01     8.405  < 2e-16 ***
ORIGIN_ID1279         3.683e+00  1.271e-01    28.991  < 2e-16 ***
ORIGIN_ID1280         2.559e+00  1.272e-01    20.119  < 2e-16 ***
ORIGIN_ID1281         1.344e+00  1.289e-01    10.431  < 2e-16 ***
ORIGIN_ID1283        -2.299e+00  2.077e-01   -11.067  < 2e-16 ***
ORIGIN_ID1289        -7.580e-01  1.536e-01    -4.935 8.00e-07 ***
ORIGIN_ID1290        -4.278e+00  1.008e+00    -4.244 2.19e-05 ***
ORIGIN_ID1291        -7.681e-01  1.293e-01    -5.939 2.87e-09 ***
ORIGIN_ID1292         9.317e-01  1.273e-01     7.317 2.53e-13 ***
ORIGIN_ID1293         2.138e+00  1.271e-01    16.823  < 2e-16 ***
ORIGIN_ID1294         2.819e+00  1.271e-01    22.184  < 2e-16 ***
ORIGIN_ID1295         3.777e+00  1.271e-01    29.721  < 2e-16 ***
ORIGIN_ID1296         6.965e-01  1.278e-01     5.449 5.06e-08 ***
ORIGIN_ID1297         7.537e-01  1.294e-01     5.824 5.74e-09 ***
ORIGIN_ID1298         1.892e+00  1.273e-01    14.865  < 2e-16 ***
ORIGIN_ID1300         4.010e-01  1.307e-01     3.068 0.002158 ** 
ORIGIN_ID1301        -5.459e-01  1.415e-01    -3.858 0.000114 ***
ORIGIN_ID1302        -4.524e-01  1.366e-01    -3.313 0.000924 ***
ORIGIN_ID1307         8.327e-02  1.402e-01     0.594 0.552485    
ORIGIN_ID1308        -3.452e+00  1.008e+00    -3.425 0.000615 ***
ORIGIN_ID1310         2.253e+00  1.271e-01    17.731  < 2e-16 ***
ORIGIN_ID1311         1.771e+00  1.271e-01    13.927  < 2e-16 ***
ORIGIN_ID1312         2.275e+00  1.271e-01    17.898  < 2e-16 ***
ORIGIN_ID1313        -3.653e-01  1.346e-01    -2.714 0.006641 ** 
ORIGIN_ID1314         2.378e+00  1.271e-01    18.711  < 2e-16 ***
ORIGIN_ID1315         2.059e+00  1.273e-01    16.173  < 2e-16 ***
ORIGIN_ID1316         2.017e+00  1.273e-01    15.840  < 2e-16 ***
ORIGIN_ID1317         1.414e+00  1.277e-01    11.075  < 2e-16 ***
ORIGIN_ID1320        -1.213e+00  1.591e-01    -7.623 2.49e-14 ***
ORIGIN_ID1325         2.042e+00  1.278e-01    15.973  < 2e-16 ***
ORIGIN_ID1326         2.318e+00  1.271e-01    18.239  < 2e-16 ***
ORIGIN_ID1327         3.161e+00  1.270e-01    24.883  < 2e-16 ***
ORIGIN_ID1328         2.740e+00  1.271e-01    21.561  < 2e-16 ***
ORIGIN_ID1329         1.386e+00  1.273e-01    10.882  < 2e-16 ***
ORIGIN_ID1330         1.885e+00  1.272e-01    14.818  < 2e-16 ***
ORIGIN_ID1331         3.144e+00  1.271e-01    24.741  < 2e-16 ***
ORIGIN_ID1332         2.288e-01  1.303e-01     1.756 0.079087 .  
ORIGIN_ID1333         2.898e+00  1.271e-01    22.794  < 2e-16 ***
ORIGIN_ID1334         4.942e-02  1.315e-01     0.376 0.707063    
ORIGIN_ID1338        -2.152e+00  2.877e-01    -7.480 7.43e-14 ***
ORIGIN_ID1339         2.839e+00  1.274e-01    22.273  < 2e-16 ***
ORIGIN_ID1341         1.427e+00  1.274e-01    11.200  < 2e-16 ***
ORIGIN_ID1342         3.104e+00  1.271e-01    24.429  < 2e-16 ***
ORIGIN_ID1343         2.829e+00  1.271e-01    22.261  < 2e-16 ***
ORIGIN_ID1344         3.522e+00  1.270e-01    27.728  < 2e-16 ***
ORIGIN_ID1345         2.303e+00  1.271e-01    18.119  < 2e-16 ***
ORIGIN_ID1346         2.833e+00  1.271e-01    22.287  < 2e-16 ***
ORIGIN_ID1347         3.248e+00  1.271e-01    25.558  < 2e-16 ***
ORIGIN_ID1348         3.484e+00  1.271e-01    27.417  < 2e-16 ***
ORIGIN_ID1349         3.169e-01  1.360e-01     2.330 0.019808 *  
ORIGIN_ID1355         1.507e+00  1.283e-01    11.752  < 2e-16 ***
ORIGIN_ID1356         2.911e+00  1.270e-01    22.911  < 2e-16 ***
ORIGIN_ID1357         8.308e-01  1.280e-01     6.488 8.68e-11 ***
ORIGIN_ID1358         2.879e+00  1.271e-01    22.653  < 2e-16 ***
ORIGIN_ID1359         2.140e+00  1.271e-01    16.835  < 2e-16 ***
ORIGIN_ID1360         2.170e+00  1.271e-01    17.068  < 2e-16 ***
ORIGIN_ID1361         3.695e+00  1.270e-01    29.087  < 2e-16 ***
ORIGIN_ID1362         2.579e+00  1.271e-01    20.283  < 2e-16 ***
ORIGIN_ID1363         3.880e+00  1.271e-01    30.538  < 2e-16 ***
ORIGIN_ID1364        -1.071e+00  1.458e-01    -7.344 2.07e-13 ***
ORIGIN_ID1370         1.289e+00  1.273e-01    10.124  < 2e-16 ***
ORIGIN_ID1371         2.842e+00  1.271e-01    22.363  < 2e-16 ***
ORIGIN_ID1372         2.021e+00  1.271e-01    15.895  < 2e-16 ***
ORIGIN_ID1373         2.237e+00  1.273e-01    17.573  < 2e-16 ***
ORIGIN_ID1374         2.687e+00  1.271e-01    21.148  < 2e-16 ***
ORIGIN_ID1376         3.861e+00  1.270e-01    30.398  < 2e-16 ***
ORIGIN_ID1377        -2.439e-01  1.338e-01    -1.822 0.068399 .  
ORIGIN_ID1378         7.540e-01  1.311e-01     5.753 8.78e-09 ***
ORIGIN_ID1383         1.288e+00  1.280e-01    10.064  < 2e-16 ***
ORIGIN_ID1384         2.723e+00  1.271e-01    21.432  < 2e-16 ***
ORIGIN_ID1385         2.029e+00  1.271e-01    15.959  < 2e-16 ***
ORIGIN_ID1386         1.341e+00  1.275e-01    10.521  < 2e-16 ***
ORIGIN_ID1387         2.048e+00  1.272e-01    16.101  < 2e-16 ***
ORIGIN_ID1388         1.206e+00  1.275e-01     9.458  < 2e-16 ***
ORIGIN_ID1389         3.569e+00  1.270e-01    28.094  < 2e-16 ***
ORIGIN_ID1390         3.695e+00  1.271e-01    29.083  < 2e-16 ***
ORIGIN_ID1391         3.117e+00  1.271e-01    24.525  < 2e-16 ***
ORIGIN_ID1396         2.742e+00  1.271e-01    21.572  < 2e-16 ***
ORIGIN_ID1397         2.587e+00  1.271e-01    20.357  < 2e-16 ***
ORIGIN_ID1398         2.661e+00  1.271e-01    20.940  < 2e-16 ***
ORIGIN_ID1399         1.545e+00  1.273e-01    12.144  < 2e-16 ***
ORIGIN_ID1400         3.417e+00  1.271e-01    26.894  < 2e-16 ***
ORIGIN_ID1401         1.881e+00  1.272e-01    14.783  < 2e-16 ***
ORIGIN_ID1402         3.964e+00  1.270e-01    31.204  < 2e-16 ***
ORIGIN_ID1403         2.581e+00  1.272e-01    20.282  < 2e-16 ***
ORIGIN_ID1408         2.085e+00  1.273e-01    16.381  < 2e-16 ***
ORIGIN_ID1409         2.835e+00  1.271e-01    22.311  < 2e-16 ***
ORIGIN_ID1410         2.282e+00  1.271e-01    17.960  < 2e-16 ***
ORIGIN_ID1411         2.510e+00  1.271e-01    19.753  < 2e-16 ***
ORIGIN_ID1412         1.336e-01  1.286e-01     1.039 0.299001    
ORIGIN_ID1413         2.697e+00  1.271e-01    21.224  < 2e-16 ***
ORIGIN_ID1414         3.567e+00  1.270e-01    28.082  < 2e-16 ***
ORIGIN_ID1415         2.808e+00  1.271e-01    22.093  < 2e-16 ***
ORIGIN_ID1416         4.064e+00  1.270e-01    31.990  < 2e-16 ***
ORIGIN_ID1417         3.830e+00  1.273e-01    30.081  < 2e-16 ***
ORIGIN_ID1421         1.241e+00  1.274e-01     9.742  < 2e-16 ***
ORIGIN_ID1422         2.802e+00  1.270e-01    22.057  < 2e-16 ***
ORIGIN_ID1423         1.591e+00  1.272e-01    12.507  < 2e-16 ***
ORIGIN_ID1424        -3.599e-01  1.298e-01    -2.773 0.005562 ** 
ORIGIN_ID1425         3.002e+00  1.271e-01    23.626  < 2e-16 ***
ORIGIN_ID1426         3.604e+00  1.270e-01    28.367  < 2e-16 ***
ORIGIN_ID1427         3.316e+00  1.270e-01    26.101  < 2e-16 ***
ORIGIN_ID1428         3.213e+00  1.271e-01    25.290  < 2e-16 ***
ORIGIN_ID1429         3.399e+00  1.271e-01    26.747  < 2e-16 ***
ORIGIN_ID1432         1.622e+00  1.274e-01    12.732  < 2e-16 ***
ORIGIN_ID1433         2.125e+00  1.271e-01    16.718  < 2e-16 ***
ORIGIN_ID1434        -1.165e+00  1.316e-01    -8.855  < 2e-16 ***
ORIGIN_ID1435         1.075e+00  1.274e-01     8.442  < 2e-16 ***
ORIGIN_ID1436        -2.843e+00  2.224e-01   -12.785  < 2e-16 ***
ORIGIN_ID1437         2.644e+00  1.271e-01    20.800  < 2e-16 ***
ORIGIN_ID1438         3.239e+00  1.271e-01    25.496  < 2e-16 ***
ORIGIN_ID1439         3.246e+00  1.271e-01    25.549  < 2e-16 ***
ORIGIN_ID1440         3.833e+00  1.270e-01    30.175  < 2e-16 ***
ORIGIN_ID1441         3.898e+00  1.270e-01    30.683  < 2e-16 ***
ORIGIN_ID1444         1.971e+00  1.272e-01    15.500  < 2e-16 ***
ORIGIN_ID1445         2.716e+00  1.271e-01    21.373  < 2e-16 ***
ORIGIN_ID1446         2.344e+00  1.271e-01    18.441  < 2e-16 ***
ORIGIN_ID1447         1.359e+00  1.280e-01    10.618  < 2e-16 ***
ORIGIN_ID1448         1.245e+00  1.297e-01     9.600  < 2e-16 ***
ORIGIN_ID1449         1.784e+00  1.273e-01    14.015  < 2e-16 ***
ORIGIN_ID1450         3.379e+00  1.271e-01    26.592  < 2e-16 ***
ORIGIN_ID1451         3.705e+00  1.270e-01    29.161  < 2e-16 ***
ORIGIN_ID1452         2.649e+00  1.272e-01    20.833  < 2e-16 ***
ORIGIN_ID1453         3.238e+00  1.272e-01    25.459  < 2e-16 ***
ORIGIN_ID1455         2.089e+00  1.272e-01    16.420  < 2e-16 ***
ORIGIN_ID1456         2.495e+00  1.272e-01    19.620  < 2e-16 ***
ORIGIN_ID1457         2.238e+00  1.271e-01    17.608  < 2e-16 ***
ORIGIN_ID1458         2.009e+00  1.272e-01    15.801  < 2e-16 ***
ORIGIN_ID1459         1.333e+00  1.293e-01    10.308  < 2e-16 ***
ORIGIN_ID1461         2.034e+00  1.276e-01    15.942  < 2e-16 ***
ORIGIN_ID1462         3.010e+00  1.271e-01    23.680  < 2e-16 ***
ORIGIN_ID1463         4.399e+00  1.270e-01    34.631  < 2e-16 ***
ORIGIN_ID1464         3.899e+00  1.270e-01    30.693  < 2e-16 ***
ORIGIN_ID1465         3.298e+00  1.273e-01    25.905  < 2e-16 ***
ORIGIN_ID1466         3.026e+00  1.271e-01    23.815  < 2e-16 ***
ORIGIN_ID1467         3.151e+00  1.270e-01    24.801  < 2e-16 ***
ORIGIN_ID1468         3.291e+00  1.270e-01    25.905  < 2e-16 ***
ORIGIN_ID1471         3.969e-01  1.308e-01     3.035 0.002401 ** 
ORIGIN_ID1472         3.381e+00  1.271e-01    26.600  < 2e-16 ***
ORIGIN_ID1473         3.409e+00  1.271e-01    26.828  < 2e-16 ***
ORIGIN_ID1474         4.503e+00  1.270e-01    35.453  < 2e-16 ***
ORIGIN_ID1475        -9.866e-03  1.317e-01    -0.075 0.940300    
ORIGIN_ID1478         2.379e+00  1.271e-01    18.714  < 2e-16 ***
ORIGIN_ID1479         1.731e+00  1.279e-01    13.538  < 2e-16 ***
ORIGIN_ID1480         3.042e+00  1.271e-01    23.935  < 2e-16 ***
ORIGIN_ID1483         1.009e+00  1.294e-01     7.800 6.21e-15 ***
ORIGIN_ID1485         3.073e+00  1.271e-01    24.175  < 2e-16 ***
ORIGIN_ID1486         1.759e+00  1.275e-01    13.794  < 2e-16 ***
ORIGIN_ID1487         7.078e-01  1.320e-01     5.364 8.14e-08 ***
ORIGIN_ID1488         3.280e+00  1.270e-01    25.819  < 2e-16 ***
ORIGIN_ID1489         1.532e+00  1.273e-01    12.036  < 2e-16 ***
ORIGIN_ID1490         3.348e+00  1.271e-01    26.352  < 2e-16 ***
ORIGIN_ID1491        -7.353e-01  1.341e-01    -5.484 4.17e-08 ***
ORIGIN_ID1494        -2.058e+00  1.985e-01   -10.371  < 2e-16 ***
ORIGIN_ID1495         2.003e+00  1.277e-01    15.687  < 2e-16 ***
ORIGIN_ID1496         3.225e+00  1.271e-01    25.375  < 2e-16 ***
ORIGIN_ID1500         1.957e+00  1.272e-01    15.387  < 2e-16 ***
ORIGIN_ID1501         2.877e+00  1.271e-01    22.641  < 2e-16 ***
ORIGIN_ID1502         3.220e+00  1.271e-01    25.340  < 2e-16 ***
ORIGIN_ID1506        -2.630e+00  4.649e-01    -5.658 1.54e-08 ***
ORIGIN_ID1507         3.302e+00  1.271e-01    25.977  < 2e-16 ***
ORIGIN_ID1508         3.784e+00  1.272e-01    29.757  < 2e-16 ***
ORIGIN_ID1510         2.249e+00  1.272e-01    17.684  < 2e-16 ***
ORIGIN_ID1511         1.420e+00  1.276e-01    11.131  < 2e-16 ***
ORIGIN_ID1512         2.760e+00  1.272e-01    21.697  < 2e-16 ***
ORIGIN_ID1513         1.620e+00  1.274e-01    12.718  < 2e-16 ***
ORIGIN_ID1516         1.096e+00  1.295e-01     8.459  < 2e-16 ***
ORIGIN_ID1518         3.063e+00  1.272e-01    24.077  < 2e-16 ***
ORIGIN_ID1521         2.252e+00  1.272e-01    17.710  < 2e-16 ***
ORIGIN_ID1522         3.124e+00  1.271e-01    24.588  < 2e-16 ***
ORIGIN_ID1523         2.813e+00  1.271e-01    22.127  < 2e-16 ***
ORIGIN_ID1526        -3.849e-01  1.414e-01    -2.721 0.006508 ** 
ORIGIN_ID1530         2.323e+00  1.273e-01    18.246  < 2e-16 ***
ORIGIN_ID1531         1.872e+00  1.278e-01    14.645  < 2e-16 ***
ORIGIN_ID1532         3.713e+00  1.270e-01    29.231  < 2e-16 ***
ORIGIN_ID1533         2.275e+00  1.272e-01    17.883  < 2e-16 ***
ORIGIN_ID1534         1.708e+00  1.278e-01    13.363  < 2e-16 ***
ORIGIN_ID1535         1.051e+00  1.292e-01     8.134 4.17e-16 ***
ORIGIN_ID1536        -6.093e-01  1.514e-01    -4.024 5.73e-05 ***
ORIGIN_ID1541         2.316e+00  1.272e-01    18.209  < 2e-16 ***
ORIGIN_ID1542         3.895e+00  1.270e-01    30.667  < 2e-16 ***
ORIGIN_ID1543         3.213e+00  1.271e-01    25.286  < 2e-16 ***
ORIGIN_ID1544         3.423e+00  1.271e-01    26.943  < 2e-16 ***
ORIGIN_ID1545         2.070e+00  1.274e-01    16.257  < 2e-16 ***
ORIGIN_ID1546         1.949e+00  1.274e-01    15.295  < 2e-16 ***
ORIGIN_ID1553         1.775e+00  1.272e-01    13.946  < 2e-16 ***
ORIGIN_ID1554         3.185e+00  1.271e-01    25.065  < 2e-16 ***
ORIGIN_ID1555         2.286e+00  1.271e-01    17.984  < 2e-16 ***
ORIGIN_ID1556         3.961e+00  1.270e-01    31.182  < 2e-16 ***
ORIGIN_ID1557         2.583e+00  1.272e-01    20.311  < 2e-16 ***
ORIGIN_ID1558         3.365e+00  1.271e-01    26.483  < 2e-16 ***
ORIGIN_ID1562         2.329e+00  1.272e-01    18.310  < 2e-16 ***
ORIGIN_ID1563         3.177e+00  1.271e-01    25.007  < 2e-16 ***
ORIGIN_ID1564         3.227e+00  1.271e-01    25.400  < 2e-16 ***
ORIGIN_ID1565         2.608e+00  1.271e-01    20.518  < 2e-16 ***
ORIGIN_ID1566         4.015e+00  1.270e-01    31.607  < 2e-16 ***
ORIGIN_ID1568         3.726e+00  1.271e-01    29.323  < 2e-16 ***
ORIGIN_ID1573         2.736e+00  1.271e-01    21.529  < 2e-16 ***
ORIGIN_ID1574         3.524e+00  1.271e-01    27.733  < 2e-16 ***
ORIGIN_ID1575        -5.074e-01  1.295e-01    -3.918 8.94e-05 ***
ORIGIN_ID1576         2.794e+00  1.271e-01    21.992  < 2e-16 ***
ORIGIN_ID1577         3.138e+00  1.271e-01    24.691  < 2e-16 ***
ORIGIN_ID1578         3.842e+00  1.271e-01    30.243  < 2e-16 ***
ORIGIN_ID1584         3.408e+00  1.270e-01    26.825  < 2e-16 ***
ORIGIN_ID1585         2.155e+00  1.274e-01    16.914  < 2e-16 ***
ORIGIN_ID1586         3.287e+00  1.270e-01    25.876  < 2e-16 ***
ORIGIN_ID1587         3.356e+00  1.270e-01    26.413  < 2e-16 ***
ORIGIN_ID1588         2.267e+00  1.274e-01    17.797  < 2e-16 ***
ORIGIN_ID1589         3.086e+00  1.271e-01    24.269  < 2e-16 ***
ORIGIN_ID1593         3.089e+00  1.271e-01    24.306  < 2e-16 ***
ORIGIN_ID1594         3.595e+00  1.270e-01    28.297  < 2e-16 ***
ORIGIN_ID1595         1.656e+00  1.273e-01    13.017  < 2e-16 ***
ORIGIN_ID1596         4.045e+00  1.270e-01    31.842  < 2e-16 ***
ORIGIN_ID1597         2.517e+00  1.273e-01    19.779  < 2e-16 ***
ORIGIN_ID1598         3.198e+00  1.271e-01    25.167  < 2e-16 ***
ORIGIN_ID1602        -4.534e-01  1.607e-01    -2.820 0.004795 ** 
ORIGIN_ID1603         7.509e-01  1.287e-01     5.832 5.47e-09 ***
ORIGIN_ID1604         1.900e+00  1.272e-01    14.932  < 2e-16 ***
ORIGIN_ID1605         2.413e+00  1.271e-01    18.984  < 2e-16 ***
ORIGIN_ID1606         3.070e+00  1.271e-01    24.159  < 2e-16 ***
ORIGIN_ID1607         3.119e+00  1.271e-01    24.541  < 2e-16 ***
ORIGIN_ID1608         1.046e+00  1.298e-01     8.057 7.79e-16 ***
ORIGIN_ID1611         7.349e-01  1.282e-01     5.731 9.96e-09 ***
ORIGIN_ID1612         1.169e+00  1.276e-01     9.167  < 2e-16 ***
ORIGIN_ID1613         2.907e+00  1.271e-01    22.873  < 2e-16 ***
ORIGIN_ID1614         3.505e+00  1.270e-01    27.590  < 2e-16 ***
ORIGIN_ID1615         3.464e+00  1.271e-01    27.254  < 2e-16 ***
ORIGIN_ID1616         3.577e+00  1.270e-01    28.158  < 2e-16 ***
ORIGIN_ID1620         2.091e+00  1.274e-01    16.407  < 2e-16 ***
ORIGIN_ID1621         6.219e-01  1.280e-01     4.859 1.18e-06 ***
ORIGIN_ID1622         3.141e+00  1.271e-01    24.717  < 2e-16 ***
ORIGIN_ID1623         3.863e+00  1.270e-01    30.414  < 2e-16 ***
ORIGIN_ID1624         3.787e+00  1.270e-01    29.811  < 2e-16 ***
ORIGIN_ID1629         1.179e+00  1.281e-01     9.201  < 2e-16 ***
ORIGIN_ID1630         2.582e+00  1.271e-01    20.314  < 2e-16 ***
ORIGIN_ID1631         3.350e+00  1.271e-01    26.356  < 2e-16 ***
ORIGIN_ID1632         3.048e+00  1.271e-01    23.984  < 2e-16 ***
ORIGIN_ID1633         3.649e+00  1.271e-01    28.716  < 2e-16 ***
ORIGIN_ID1638         2.701e+00  1.272e-01    21.231  < 2e-16 ***
ORIGIN_ID1639         2.291e+00  1.273e-01    17.989  < 2e-16 ***
ORIGIN_ID1640         3.093e+00  1.271e-01    24.344  < 2e-16 ***
ORIGIN_ID1641         3.388e+00  1.271e-01    26.662  < 2e-16 ***
ORIGIN_ID1642         2.926e+00  1.285e-01    22.765  < 2e-16 ***
ORIGIN_ID1646        -5.781e-01  1.342e-01    -4.307 1.65e-05 ***
ORIGIN_ID1647        -1.700e+00  1.448e-01   -11.740  < 2e-16 ***
ORIGIN_ID1648         1.609e+00  1.276e-01    12.610  < 2e-16 ***
ORIGIN_ID1649         2.698e+00  1.271e-01    21.226  < 2e-16 ***
ORIGIN_ID1654         1.057e-01  1.302e-01     0.812 0.416709    
ORIGIN_ID1655         2.527e+00  1.283e-01    19.702  < 2e-16 ***
ORIGIN_ID1656         2.662e+00  1.272e-01    20.929  < 2e-16 ***
ORIGIN_ID1657         2.487e+00  1.273e-01    19.547  < 2e-16 ***
ORIGIN_ID1658        -4.522e-01  1.467e-01    -3.081 0.002060 ** 
ORIGIN_ID1664         6.834e-01  1.330e-01     5.137 2.79e-07 ***
ORIGIN_ID1665         8.195e-01  1.288e-01     6.361 2.00e-10 ***
ORIGIN_ID1666         8.266e-01  1.284e-01     6.436 1.22e-10 ***
ORIGIN_ID1667         6.562e-01  1.325e-01     4.953 7.33e-07 ***
ORIGIN_ID1674         2.583e+00  1.283e-01    20.126  < 2e-16 ***
ORIGIN_ID1675         1.774e+00  1.279e-01    13.864  < 2e-16 ***
ORIGIN_ID1676        -1.702e-01  1.318e-01    -1.291 0.196598    
ORIGIN_ID1682         2.972e+00  1.273e-01    23.346  < 2e-16 ***
ORIGIN_ID1685         1.064e+00  1.281e-01     8.304  < 2e-16 ***
ORIGIN_ID1686         1.163e+00  1.283e-01     9.067  < 2e-16 ***
ORIGIN_ID1691         1.487e+00  1.284e-01    11.583  < 2e-16 ***
ORIGIN_ID1693        -7.420e-01  1.438e-01    -5.160 2.46e-07 ***
ORIGIN_ID1695         1.388e-01  1.360e-01     1.021 0.307379    
ORIGIN_ID1698         3.648e+00  1.278e-01    28.541  < 2e-16 ***
ORIGIN_ID1704         2.621e+00  1.273e-01    20.595  < 2e-16 ***
ORIGIN_ID1711         4.083e+00  1.271e-01    32.116  < 2e-16 ***
ORIGIN_ID1714        -1.849e+00  2.959e-01    -6.249 4.12e-10 ***
ORIGIN_ID1722         2.153e+00  1.278e-01    16.843  < 2e-16 ***
ORIGIN_ID1723        -1.806e+00  1.711e-01   -10.555  < 2e-16 ***
ORIGIN_ID1726         3.585e+00  1.280e-01    27.999  < 2e-16 ***
ORIGIN_ID1731         1.764e+00  1.285e-01    13.727  < 2e-16 ***
ORIGIN_ID1732         1.310e+00  1.288e-01    10.164  < 2e-16 ***
ORIGIN_ID1741         1.482e+00  1.304e-01    11.367  < 2e-16 ***
ORIGIN_ID1742         3.108e+00  1.274e-01    24.403  < 2e-16 ***
ORIGIN_ID1750         1.226e+00  1.339e-01     9.150  < 2e-16 ***
ORIGIN_ID1751         7.163e-01  1.394e-01     5.139 2.77e-07 ***
ORIGIN_ID1768         2.532e+00  1.327e-01    19.085  < 2e-16 ***
log(DESTIN_BUSINESS)  6.335e-02  2.065e-04   306.758  < 2e-16 ***
log(DESTIN_FINSER)    3.577e-01  2.877e-04  1243.285  < 2e-16 ***
log(DESTIN_HDB)      -8.835e-03  7.125e-05  -124.007  < 2e-16 ***
log(DESTIN_RETAIL)    7.439e-02  2.428e-04   306.371  < 2e-16 ***
log(DESTIN_SCHOOLS)   3.693e-01  6.487e-04   569.325  < 2e-16 ***
log(dist)            -1.504e+00  2.623e-04 -5733.297  < 2e-16 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

(Dispersion parameter for poisson family taken to be 1)

    Null deviance: 98394406  on 65075  degrees of freedom
Residual deviance: 37628088  on 64250  degrees of freedom
AIC: 37987035

Number of Fisher Scoring iterations: 7

Goodness of fit

With the aid of R-squared statistics , we will compute the proportion of variance in the dependent variables.

CalcRSquared(orcSIM$data$TRIPS, orcSIM$fitted.values)
[1] 0.3257997

With reference to the R-squared above, we can conclude that the model accounts for about 33% of the variation of flows in the system. The value of R2 tells that the five DESTIN explanatory variables can account for 33% of the variation. In addition, the p-value is less than the alpha of 0.05, we will reject the null hypothesis that the mean is a good estimator for the five DESTIN variables.

Looking at the explanatory variables, we note that Retail contributed the most in commuting flow , followed by Business, Schools, and Financial Service. We also note that their relationship are not the same as HDB results in negative value.As such, we are to infer that housing location (HDB) is a propulsive factor.

5.5 Destination constrained SIM

The third model that we are looking at will be the Destination Constrained model. The flow value are based on the origin attributes. We will save the output - decSIM into a RDS format and re-load into the R environment.

Show the code
decSIM <- glm(formula = TRIPS ~ 
                DESTIN_ID + 
                log(ORIGIN_BUSINESS) + 
                log(ORIGIN_FINSER) + 
                log(ORIGIN_HDB) + 
                log(ORIGIN_RETAIL) + 
                log(ORIGIN_SCHOOLS) + 
                log(dist),
              family = poisson(link = "log"),
              data = flow_data2,
              na.action = na.exclude)
#save RDS
write_rds(decSIM, "data/rds/decSIM.rds")

As we are not executing the code chunk above, we will load decSIM into the R environment.

decSIM <- read_rds("data/rds/decSIM.rds")

Click on to view the summary statistics of decSIM.

summary(decSIM)

Call:
glm(formula = TRIPS ~ DESTIN_ID + log(ORIGIN_BUSINESS) + log(ORIGIN_FINSER) + 
    log(ORIGIN_HDB) + log(ORIGIN_RETAIL) + log(ORIGIN_SCHOOLS) + 
    log(dist), family = poisson(link = "log"), data = flow_data2, 
    na.action = na.exclude)

Deviance Residuals: 
    Min       1Q   Median       3Q      Max  
-206.87   -12.26    -5.65     0.61   609.91  

Coefficients:
                       Estimate Std. Error   z value Pr(>|z|)    
(Intercept)           1.672e+01  5.049e-02   331.216  < 2e-16 ***
DESTIN_ID29           9.818e-01  5.526e-02    17.767  < 2e-16 ***
DESTIN_ID40           1.995e-01  5.782e-02     3.451 0.000559 ***
DESTIN_ID41           5.198e-01  5.398e-02     9.629  < 2e-16 ***
DESTIN_ID48           1.398e-01  6.106e-02     2.289 0.022059 *  
DESTIN_ID49           3.961e-01  5.224e-02     7.581 3.43e-14 ***
DESTIN_ID50          -6.075e-01  5.573e-02   -10.902  < 2e-16 ***
DESTIN_ID51           4.535e-01  5.423e-02     8.362  < 2e-16 ***
DESTIN_ID59          -1.273e+00  6.462e-02   -19.701  < 2e-16 ***
DESTIN_ID60          -1.612e-01  5.317e-02    -3.031 0.002435 ** 
DESTIN_ID61          -3.065e+00  1.125e-01   -27.252  < 2e-16 ***
DESTIN_ID62           9.092e-01  5.162e-02    17.613  < 2e-16 ***
DESTIN_ID63          -1.335e+00  5.992e-02   -22.278  < 2e-16 ***
DESTIN_ID69           3.807e-01  5.368e-02     7.093 1.32e-12 ***
DESTIN_ID70          -2.158e-01  5.405e-02    -3.992 6.56e-05 ***
DESTIN_ID71           9.127e-01  5.192e-02    17.578  < 2e-16 ***
DESTIN_ID72          -7.957e-01  5.460e-02   -14.575  < 2e-16 ***
DESTIN_ID73          -5.230e-02  5.472e-02    -0.956 0.339180    
DESTIN_ID74          -2.014e-01  5.263e-02    -3.827 0.000130 ***
DESTIN_ID82          -1.664e+00  6.649e-02   -25.033  < 2e-16 ***
DESTIN_ID83          -1.091e+00  5.787e-02   -18.849  < 2e-16 ***
DESTIN_ID85           8.726e-01  5.129e-02    17.012  < 2e-16 ***
DESTIN_ID86           2.086e-02  5.178e-02     0.403 0.687081    
DESTIN_ID87           2.009e-01  5.140e-02     3.908 9.29e-05 ***
DESTIN_ID98           5.749e-01  5.181e-02    11.096  < 2e-16 ***
DESTIN_ID99          -4.885e-01  5.593e-02    -8.734  < 2e-16 ***
DESTIN_ID100         -1.040e-01  5.308e-02    -1.958 0.050180 .  
DESTIN_ID109         -1.278e+00  6.536e-02   -19.553  < 2e-16 ***
DESTIN_ID111         -5.530e-01  5.556e-02    -9.952  < 2e-16 ***
DESTIN_ID112         -1.564e+00  5.630e-02   -27.788  < 2e-16 ***
DESTIN_ID113         -2.838e+00  2.631e-01   -10.788  < 2e-16 ***
DESTIN_ID125         -5.692e-01  5.274e-02   -10.792  < 2e-16 ***
DESTIN_ID126          3.713e-01  5.165e-02     7.189 6.55e-13 ***
DESTIN_ID135         -2.205e-01  5.817e-02    -3.790 0.000151 ***
DESTIN_ID136         -4.565e-01  5.344e-02    -8.542  < 2e-16 ***
DESTIN_ID137          9.377e-01  5.115e-02    18.333  < 2e-16 ***
DESTIN_ID138         -2.134e+00  9.337e-02   -22.851  < 2e-16 ***
DESTIN_ID148          9.143e-01  5.340e-02    17.120  < 2e-16 ***
DESTIN_ID149          2.326e-01  5.268e-02     4.416 1.00e-05 ***
DESTIN_ID150         -8.538e-02  5.558e-02    -1.536 0.124501    
DESTIN_ID159          1.193e+00  5.188e-02    22.994  < 2e-16 ***
DESTIN_ID160         -9.056e-01  5.420e-02   -16.709  < 2e-16 ***
DESTIN_ID161         -3.102e-01  5.331e-02    -5.818 5.94e-09 ***
DESTIN_ID171         -1.242e+00  5.979e-02   -20.777  < 2e-16 ***
DESTIN_ID172          7.365e-01  5.190e-02    14.191  < 2e-16 ***
DESTIN_ID173         -1.876e-01  5.292e-02    -3.545 0.000392 ***
DESTIN_ID185          3.954e-01  5.194e-02     7.613 2.68e-14 ***
DESTIN_ID186         -4.248e-01  5.256e-02    -8.081 6.41e-16 ***
DESTIN_ID201          1.139e+00  5.141e-02    22.156  < 2e-16 ***
DESTIN_ID202          8.165e-01  5.281e-02    15.459  < 2e-16 ***
DESTIN_ID203          1.488e+00  5.105e-02    29.148  < 2e-16 ***
DESTIN_ID217          5.190e-01  5.400e-02     9.611  < 2e-16 ***
DESTIN_ID218         -2.536e+00  7.773e-02   -32.633  < 2e-16 ***
DESTIN_ID219          8.921e-01  5.148e-02    17.329  < 2e-16 ***
DESTIN_ID220          1.238e+00  5.129e-02    24.140  < 2e-16 ***
DESTIN_ID234          1.084e+00  5.110e-02    21.213  < 2e-16 ***
DESTIN_ID235         -1.353e-01  5.182e-02    -2.610 0.009043 ** 
DESTIN_ID251          1.830e-01  5.337e-02     3.428 0.000608 ***
DESTIN_ID252          4.767e-01  5.186e-02     9.192  < 2e-16 ***
DESTIN_ID253          7.568e-01  5.069e-02    14.931  < 2e-16 ***
DESTIN_ID254          8.527e-01  5.108e-02    16.692  < 2e-16 ***
DESTIN_ID255         -1.041e+00  5.730e-02   -18.172  < 2e-16 ***
DESTIN_ID268          8.907e-01  5.235e-02    17.015  < 2e-16 ***
DESTIN_ID269          6.211e-01  5.143e-02    12.076  < 2e-16 ***
DESTIN_ID270         -5.301e-01  5.168e-02   -10.258  < 2e-16 ***
DESTIN_ID272          1.804e+00  5.061e-02    35.650  < 2e-16 ***
DESTIN_ID285         -2.041e-01  5.475e-02    -3.727 0.000194 ***
DESTIN_ID286          1.057e+00  5.172e-02    20.442  < 2e-16 ***
DESTIN_ID287         -4.865e-01  5.135e-02    -9.475  < 2e-16 ***
DESTIN_ID288          1.036e-01  5.121e-02     2.022 0.043146 *  
DESTIN_ID289         -5.418e-01  5.175e-02   -10.470  < 2e-16 ***
DESTIN_ID303         -4.211e-01  5.314e-02    -7.924 2.30e-15 ***
DESTIN_ID304          9.275e-02  5.134e-02     1.807 0.070837 .  
DESTIN_ID306         -9.723e-01  5.211e-02   -18.659  < 2e-16 ***
DESTIN_ID307         -1.370e+00  5.629e-02   -24.333  < 2e-16 ***
DESTIN_ID320         -5.850e-01  5.491e-02   -10.654  < 2e-16 ***
DESTIN_ID321         -5.849e-01  5.298e-02   -11.040  < 2e-16 ***
DESTIN_ID322         -8.313e-01  5.155e-02   -16.127  < 2e-16 ***
DESTIN_ID323          7.047e-01  5.068e-02    13.905  < 2e-16 ***
DESTIN_ID324         -1.036e+00  5.394e-02   -19.207  < 2e-16 ***
DESTIN_ID325         -2.860e+00  7.234e-02   -39.539  < 2e-16 ***
DESTIN_ID338          5.500e-01  5.117e-02    10.748  < 2e-16 ***
DESTIN_ID339          9.636e-02  5.121e-02     1.882 0.059881 .  
DESTIN_ID340         -9.931e-01  5.113e-02   -19.422  < 2e-16 ***
DESTIN_ID341         -9.509e-01  5.122e-02   -18.566  < 2e-16 ***
DESTIN_ID342          5.381e-01  5.093e-02    10.567  < 2e-16 ***
DESTIN_ID343         -1.100e+00  5.407e-02   -20.351  < 2e-16 ***
DESTIN_ID353         -7.222e-01  5.296e-02   -13.638  < 2e-16 ***
DESTIN_ID354          1.140e+00  5.084e-02    22.423  < 2e-16 ***
DESTIN_ID355         -1.948e-01  5.092e-02    -3.826 0.000130 ***
DESTIN_ID356          7.985e-01  5.055e-02    15.796  < 2e-16 ***
DESTIN_ID357         -1.520e+00  5.223e-02   -29.101  < 2e-16 ***
DESTIN_ID358         -4.408e-01  5.182e-02    -8.506  < 2e-16 ***
DESTIN_ID359         -8.613e-01  5.271e-02   -16.340  < 2e-16 ***
DESTIN_ID360         -4.588e+00  1.788e-01   -25.667  < 2e-16 ***
DESTIN_ID361         -1.878e+00  6.605e-02   -28.437  < 2e-16 ***
DESTIN_ID370         -9.294e-01  5.325e-02   -17.454  < 2e-16 ***
DESTIN_ID371         -1.503e+00  6.856e-02   -21.925  < 2e-16 ***
DESTIN_ID372          4.325e-01  5.060e-02     8.547  < 2e-16 ***
DESTIN_ID373         -2.339e-01  5.075e-02    -4.608 4.06e-06 ***
DESTIN_ID375         -3.729e+00  8.884e-02   -41.969  < 2e-16 ***
DESTIN_ID376         -1.565e+00  6.018e-02   -26.007  < 2e-16 ***
DESTIN_ID378         -1.837e+00  7.312e-02   -25.126  < 2e-16 ***
DESTIN_ID379          8.139e-02  5.287e-02     1.539 0.123686    
DESTIN_ID386         -2.397e-01  5.346e-02    -4.483 7.36e-06 ***
DESTIN_ID387          4.390e-01  5.167e-02     8.497  < 2e-16 ***
DESTIN_ID388         -9.475e-02  5.157e-02    -1.837 0.066178 .  
DESTIN_ID389          1.628e+00  5.048e-02    32.260  < 2e-16 ***
DESTIN_ID390          1.970e-01  5.066e-02     3.889 0.000101 ***
DESTIN_ID395         -4.293e+00  2.063e-01   -20.811  < 2e-16 ***
DESTIN_ID396         -1.852e+00  7.120e-02   -26.014  < 2e-16 ***
DESTIN_ID406         -8.477e-01  5.446e-02   -15.566  < 2e-16 ***
DESTIN_ID407          5.737e-01  5.126e-02    11.191  < 2e-16 ***
DESTIN_ID408         -8.068e-01  5.093e-02   -15.842  < 2e-16 ***
DESTIN_ID409         -6.309e-01  5.078e-02   -12.425  < 2e-16 ***
DESTIN_ID411         -5.406e+00  2.025e-01   -26.697  < 2e-16 ***
DESTIN_ID416         -2.127e+00  7.171e-02   -29.659  < 2e-16 ***
DESTIN_ID417         -8.234e-01  6.165e-02   -13.356  < 2e-16 ***
DESTIN_ID424          3.682e-02  5.191e-02     0.709 0.478153    
DESTIN_ID425          1.290e-01  5.090e-02     2.535 0.011245 *  
DESTIN_ID426         -1.109e+00  5.094e-02   -21.774  < 2e-16 ***
DESTIN_ID427         -8.245e-01  5.099e-02   -16.169  < 2e-16 ***
DESTIN_ID434         -2.353e+00  1.451e-01   -16.210  < 2e-16 ***
DESTIN_ID435         -1.164e+00  6.941e-02   -16.763  < 2e-16 ***
DESTIN_ID441         -8.450e-01  5.332e-02   -15.847  < 2e-16 ***
DESTIN_ID442         -1.292e+00  5.372e-02   -24.044  < 2e-16 ***
DESTIN_ID443          2.608e-02  5.083e-02     0.513 0.607935    
DESTIN_ID444         -2.636e-01  5.069e-02    -5.200 1.99e-07 ***
DESTIN_ID446          1.705e-01  5.196e-02     3.281 0.001034 ** 
DESTIN_ID462         -1.607e-01  5.120e-02    -3.138 0.001700 ** 
DESTIN_ID463         -1.028e+00  5.169e-02   -19.891  < 2e-16 ***
DESTIN_ID464         -5.241e-01  5.074e-02   -10.330  < 2e-16 ***
DESTIN_ID465         -2.068e-01  5.067e-02    -4.082 4.47e-05 ***
DESTIN_ID467         -2.646e-02  5.141e-02    -0.515 0.606724    
DESTIN_ID480          9.515e-01  5.073e-02    18.754  < 2e-16 ***
DESTIN_ID481         -2.283e-01  5.080e-02    -4.494 6.98e-06 ***
DESTIN_ID482         -6.082e-01  5.084e-02   -11.964  < 2e-16 ***
DESTIN_ID483          1.504e+00  5.049e-02    29.796  < 2e-16 ***
DESTIN_ID501         -1.336e+00  5.371e-02   -24.885  < 2e-16 ***
DESTIN_ID502          1.766e-01  5.065e-02     3.488 0.000487 ***
DESTIN_ID503         -1.680e+00  5.169e-02   -32.502  < 2e-16 ***
DESTIN_ID504         -1.314e-01  5.064e-02    -2.594 0.009480 ** 
DESTIN_ID506         -2.370e-01  5.152e-02    -4.599 4.24e-06 ***
DESTIN_ID521         -7.196e-01  5.414e-02   -13.292  < 2e-16 ***
DESTIN_ID522         -1.981e+00  5.259e-02   -37.672  < 2e-16 ***
DESTIN_ID523         -2.620e+00  5.469e-02   -47.902  < 2e-16 ***
DESTIN_ID524         -7.838e-01  5.076e-02   -15.440  < 2e-16 ***
DESTIN_ID543          7.680e-02  5.070e-02     1.515 0.129812    
DESTIN_ID544         -3.732e-01  5.070e-02    -7.360 1.84e-13 ***
DESTIN_ID546         -2.379e+00  5.671e-02   -41.958  < 2e-16 ***
DESTIN_ID558          7.052e-01  5.077e-02    13.890  < 2e-16 ***
DESTIN_ID559         -2.600e+00  5.986e-02   -43.436  < 2e-16 ***
DESTIN_ID560         -2.645e+00  5.352e-02   -49.431  < 2e-16 ***
DESTIN_ID561         -1.699e-01  5.061e-02    -3.357 0.000788 ***
DESTIN_ID569         -1.799e+00  6.305e-02   -28.528  < 2e-16 ***
DESTIN_ID575         -1.409e-01  5.154e-02    -2.734 0.006252 ** 
DESTIN_ID576         -1.535e+00  5.234e-02   -29.324  < 2e-16 ***
DESTIN_ID577         -3.016e+00  5.550e-02   -54.330  < 2e-16 ***
DESTIN_ID578         -6.329e-01  5.073e-02   -12.477  < 2e-16 ***
DESTIN_ID579         -5.125e-01  5.081e-02   -10.087  < 2e-16 ***
DESTIN_ID581         -5.392e-02  5.079e-02    -1.062 0.288379    
DESTIN_ID582         -3.124e+00  6.833e-02   -45.714  < 2e-16 ***
DESTIN_ID594         -7.283e-01  5.100e-02   -14.280  < 2e-16 ***
DESTIN_ID595          1.015e+00  5.050e-02    20.091  < 2e-16 ***
DESTIN_ID596         -2.140e-01  5.064e-02    -4.226 2.38e-05 ***
DESTIN_ID597         -7.555e-01  5.092e-02   -14.836  < 2e-16 ***
DESTIN_ID598         -4.344e+00  7.846e-02   -55.367  < 2e-16 ***
DESTIN_ID599         -5.807e-01  5.083e-02   -11.423  < 2e-16 ***
DESTIN_ID600         -5.910e-02  5.096e-02    -1.160 0.246191    
DESTIN_ID604         -5.360e-01  5.409e-02    -9.909  < 2e-16 ***
DESTIN_ID609         -2.544e+00  6.018e-02   -42.279  < 2e-16 ***
DESTIN_ID610         -6.509e-01  5.105e-02   -12.751  < 2e-16 ***
DESTIN_ID611         -1.267e+00  5.116e-02   -24.772  < 2e-16 ***
DESTIN_ID612         -2.689e-01  5.066e-02    -5.308 1.11e-07 ***
DESTIN_ID613         -7.129e-01  5.073e-02   -14.053  < 2e-16 ***
DESTIN_ID614         -9.113e-01  5.092e-02   -17.896  < 2e-16 ***
DESTIN_ID615         -6.222e-01  5.094e-02   -12.215  < 2e-16 ***
DESTIN_ID616          1.300e+00  5.050e-02    25.741  < 2e-16 ***
DESTIN_ID617         -3.082e+00  6.189e-02   -49.799  < 2e-16 ***
DESTIN_ID620         -1.946e+00  5.845e-02   -33.298  < 2e-16 ***
DESTIN_ID624         -3.894e-01  5.168e-02    -7.534 4.90e-14 ***
DESTIN_ID625          7.967e-01  5.100e-02    15.620  < 2e-16 ***
DESTIN_ID626         -1.664e-01  5.068e-02    -3.283 0.001026 ** 
DESTIN_ID627         -1.854e-01  5.068e-02    -3.658 0.000255 ***
DESTIN_ID628         -6.975e-01  5.075e-02   -13.744  < 2e-16 ***
DESTIN_ID629         -1.535e+00  5.120e-02   -29.974  < 2e-16 ***
DESTIN_ID630         -2.833e+00  5.347e-02   -52.984  < 2e-16 ***
DESTIN_ID631         -2.750e-04  5.061e-02    -0.005 0.995665    
DESTIN_ID632         -4.280e-01  5.089e-02    -8.411  < 2e-16 ***
DESTIN_ID633         -1.998e-01  5.134e-02    -3.891 9.98e-05 ***
DESTIN_ID635         -7.744e-01  5.273e-02   -14.687  < 2e-16 ***
DESTIN_ID641         -1.067e+00  5.223e-02   -20.438  < 2e-16 ***
DESTIN_ID642         -6.417e-01  5.099e-02   -12.584  < 2e-16 ***
DESTIN_ID643          3.897e-01  5.064e-02     7.694 1.43e-14 ***
DESTIN_ID645          7.894e-01  5.051e-02    15.629  < 2e-16 ***
DESTIN_ID646         -2.210e-01  5.069e-02    -4.361 1.30e-05 ***
DESTIN_ID647         -2.918e-01  5.065e-02    -5.760 8.40e-09 ***
DESTIN_ID649          1.042e+00  5.058e-02    20.610  < 2e-16 ***
DESTIN_ID650         -6.203e-01  5.239e-02   -11.842  < 2e-16 ***
DESTIN_ID651         -9.459e-01  5.309e-02   -17.816  < 2e-16 ***
DESTIN_ID652         -8.863e-01  5.317e-02   -16.670  < 2e-16 ***
DESTIN_ID658         -8.558e-01  5.221e-02   -16.392  < 2e-16 ***
DESTIN_ID659         -3.663e-01  5.085e-02    -7.204 5.87e-13 ***
DESTIN_ID660         -1.294e+00  5.131e-02   -25.211  < 2e-16 ***
DESTIN_ID661          9.850e-01  5.068e-02    19.436  < 2e-16 ***
DESTIN_ID662         -1.185e-01  5.062e-02    -2.341 0.019244 *  
DESTIN_ID663          1.080e+00  5.056e-02    21.360  < 2e-16 ***
DESTIN_ID665          3.436e-01  5.062e-02     6.788 1.14e-11 ***
DESTIN_ID666         -1.906e+00  5.196e-02   -36.679  < 2e-16 ***
DESTIN_ID667          4.598e-01  5.075e-02     9.058  < 2e-16 ***
DESTIN_ID668         -2.126e+00  5.605e-02   -37.932  < 2e-16 ***
DESTIN_ID669         -9.020e-01  5.264e-02   -17.135  < 2e-16 ***
DESTIN_ID670         -2.311e+00  8.051e-02   -28.705  < 2e-16 ***
DESTIN_ID676          7.940e-02  5.137e-02     1.546 0.122149    
DESTIN_ID677         -1.383e+00  5.134e-02   -26.945  < 2e-16 ***
DESTIN_ID678         -7.219e-01  5.098e-02   -14.161  < 2e-16 ***
DESTIN_ID679          4.344e-01  5.061e-02     8.582  < 2e-16 ***
DESTIN_ID680         -8.617e-01  5.087e-02   -16.938  < 2e-16 ***
DESTIN_ID682         -7.305e-01  5.076e-02   -14.391  < 2e-16 ***
DESTIN_ID683         -5.302e-01  5.079e-02   -10.438  < 2e-16 ***
DESTIN_ID684         -1.695e+00  5.327e-02   -31.824  < 2e-16 ***
DESTIN_ID685          6.621e-02  5.098e-02     1.299 0.194056    
DESTIN_ID686         -2.435e+00  5.658e-02   -43.040  < 2e-16 ***
DESTIN_ID687         -4.242e-01  5.208e-02    -8.145 3.80e-16 ***
DESTIN_ID696         -1.207e+00  5.194e-02   -23.247  < 2e-16 ***
DESTIN_ID697         -5.061e-01  5.074e-02    -9.973  < 2e-16 ***
DESTIN_ID698         -1.023e+00  5.112e-02   -20.001  < 2e-16 ***
DESTIN_ID699         -7.154e-02  5.075e-02    -1.410 0.158657    
DESTIN_ID700         -1.537e+00  5.143e-02   -29.890  < 2e-16 ***
DESTIN_ID701         -8.210e-01  5.116e-02   -16.049  < 2e-16 ***
DESTIN_ID702         -1.075e+00  5.113e-02   -21.034  < 2e-16 ***
DESTIN_ID703          1.259e-01  5.057e-02     2.491 0.012749 *  
DESTIN_ID707         -1.420e+00  5.494e-02   -25.847  < 2e-16 ***
DESTIN_ID716         -1.679e+00  5.250e-02   -31.989  < 2e-16 ***
DESTIN_ID717          1.578e-01  5.064e-02     3.116 0.001833 ** 
DESTIN_ID718          1.220e+00  5.049e-02    24.159  < 2e-16 ***
DESTIN_ID719          1.382e-01  5.098e-02     2.710 0.006723 ** 
DESTIN_ID720         -2.386e+00  5.433e-02   -43.908  < 2e-16 ***
DESTIN_ID722          5.925e-02  5.069e-02     1.169 0.242493    
DESTIN_ID723          1.060e+00  5.050e-02    20.992  < 2e-16 ***
DESTIN_ID724         -1.256e+00  5.151e-02   -24.384  < 2e-16 ***
DESTIN_ID726         -4.211e-01  5.382e-02    -7.825 5.09e-15 ***
DESTIN_ID727          1.536e+00  5.054e-02    30.400  < 2e-16 ***
DESTIN_ID728         -1.272e+00  5.323e-02   -23.895  < 2e-16 ***
DESTIN_ID735         -3.419e+00  1.018e-01   -33.598  < 2e-16 ***
DESTIN_ID736          5.508e-02  5.068e-02     1.087 0.277110    
DESTIN_ID737         -5.239e-01  5.067e-02   -10.341  < 2e-16 ***
DESTIN_ID738         -1.578e+00  5.166e-02   -30.552  < 2e-16 ***
DESTIN_ID739         -1.361e+00  5.322e-02   -25.575  < 2e-16 ***
DESTIN_ID740         -1.852e+00  5.195e-02   -35.647  < 2e-16 ***
DESTIN_ID741         -1.217e+00  5.133e-02   -23.707  < 2e-16 ***
DESTIN_ID742         -7.885e-01  5.096e-02   -15.472  < 2e-16 ***
DESTIN_ID743         -1.187e+00  5.103e-02   -23.269  < 2e-16 ***
DESTIN_ID747         -1.055e+00  5.178e-02   -20.376  < 2e-16 ***
DESTIN_ID748          2.641e-01  5.069e-02     5.209 1.90e-07 ***
DESTIN_ID757         -2.755e-01  5.078e-02    -5.425 5.80e-08 ***
DESTIN_ID758         -1.414e-01  5.069e-02    -2.789 0.005285 ** 
DESTIN_ID759         -1.085e+00  5.095e-02   -21.292  < 2e-16 ***
DESTIN_ID761         -4.676e-01  5.081e-02    -9.203  < 2e-16 ***
DESTIN_ID762         -2.760e+00  5.508e-02   -50.103  < 2e-16 ***
DESTIN_ID763          1.184e-01  5.085e-02     2.329 0.019853 *  
DESTIN_ID764         -4.286e-02  5.068e-02    -0.846 0.397705    
DESTIN_ID765         -4.170e-01  5.096e-02    -8.182 2.79e-16 ***
DESTIN_ID767         -7.266e-01  5.858e-02   -12.403  < 2e-16 ***
DESTIN_ID769         -4.561e-01  5.080e-02    -8.980  < 2e-16 ***
DESTIN_ID770          8.714e-01  5.064e-02    17.208  < 2e-16 ***
DESTIN_ID775         -6.317e-02  5.083e-02    -1.243 0.213915    
DESTIN_ID776         -4.570e-02  5.097e-02    -0.897 0.369966    
DESTIN_ID777         -7.507e-01  5.084e-02   -14.764  < 2e-16 ***
DESTIN_ID778         -1.879e+00  5.186e-02   -36.230  < 2e-16 ***
DESTIN_ID780         -1.359e+00  5.158e-02   -26.339  < 2e-16 ***
DESTIN_ID782         -1.575e+00  5.251e-02   -29.988  < 2e-16 ***
DESTIN_ID783         -7.263e-01  5.115e-02   -14.200  < 2e-16 ***
DESTIN_ID787          1.041e+00  5.053e-02    20.599  < 2e-16 ***
DESTIN_ID788         -1.044e-01  5.072e-02    -2.058 0.039605 *  
DESTIN_ID795         -1.220e+00  5.651e-02   -21.591  < 2e-16 ***
DESTIN_ID796         -1.418e+00  5.176e-02   -27.392  < 2e-16 ***
DESTIN_ID797         -1.579e+00  5.346e-02   -29.537  < 2e-16 ***
DESTIN_ID798          1.059e+00  5.053e-02    20.963  < 2e-16 ***
DESTIN_ID799          8.760e-01  5.054e-02    17.333  < 2e-16 ***
DESTIN_ID801         -1.229e+00  5.266e-02   -23.335  < 2e-16 ***
DESTIN_ID802         -7.857e-01  5.102e-02   -15.400  < 2e-16 ***
DESTIN_ID805          2.464e-01  5.125e-02     4.808 1.52e-06 ***
DESTIN_ID807         -6.984e-01  5.085e-02   -13.735  < 2e-16 ***
DESTIN_ID808          7.998e-03  5.081e-02     0.157 0.874916    
DESTIN_ID813          5.047e-01  5.064e-02     9.966  < 2e-16 ***
DESTIN_ID814          3.524e-02  5.080e-02     0.694 0.487864    
DESTIN_ID815          2.156e-02  5.066e-02     0.426 0.670355    
DESTIN_ID816         -2.127e+00  5.281e-02   -40.277  < 2e-16 ***
DESTIN_ID817         -2.903e-01  5.072e-02    -5.723 1.05e-08 ***
DESTIN_ID825         -9.345e-01  5.119e-02   -18.255  < 2e-16 ***
DESTIN_ID826         -4.396e-01  5.084e-02    -8.647  < 2e-16 ***
DESTIN_ID827         -3.977e+00  8.420e-02   -47.234  < 2e-16 ***
DESTIN_ID831          1.620e-01  5.072e-02     3.195 0.001400 ** 
DESTIN_ID832          4.866e-01  5.062e-02     9.614  < 2e-16 ***
DESTIN_ID833         -1.294e-01  5.067e-02    -2.554 0.010651 *  
DESTIN_ID834         -1.159e+00  5.124e-02   -22.612  < 2e-16 ***
DESTIN_ID842         -2.522e+00  6.605e-02   -38.184  < 2e-16 ***
DESTIN_ID844          5.886e-01  5.057e-02    11.638  < 2e-16 ***
DESTIN_ID845          1.432e-01  5.082e-02     2.818 0.004826 ** 
DESTIN_ID850         -1.834e+00  5.319e-02   -34.489  < 2e-16 ***
DESTIN_ID851          6.116e-01  5.091e-02    12.013  < 2e-16 ***
DESTIN_ID852         -6.213e-01  5.081e-02   -12.229  < 2e-16 ***
DESTIN_ID853         -8.993e-01  5.095e-02   -17.651  < 2e-16 ***
DESTIN_ID854         -2.986e+00  5.887e-02   -50.725  < 2e-16 ***
DESTIN_ID855         -1.137e+00  5.121e-02   -22.198  < 2e-16 ***
DESTIN_ID861          7.429e-01  5.113e-02    14.529  < 2e-16 ***
DESTIN_ID863         -1.152e+00  5.146e-02   -22.392  < 2e-16 ***
DESTIN_ID864          1.869e+00  5.047e-02    37.024  < 2e-16 ***
DESTIN_ID865         -1.733e+00  5.450e-02   -31.797  < 2e-16 ***
DESTIN_ID869         -1.697e+00  6.143e-02   -27.630  < 2e-16 ***
DESTIN_ID870         -4.222e-01  5.174e-02    -8.159 3.39e-16 ***
DESTIN_ID871          5.523e-03  5.059e-02     0.109 0.913058    
DESTIN_ID872         -2.203e+00  5.271e-02   -41.796  < 2e-16 ***
DESTIN_ID873         -3.109e+00  6.593e-02   -47.159  < 2e-16 ***
DESTIN_ID880         -3.480e+00  1.053e-01   -33.040  < 2e-16 ***
DESTIN_ID882          1.270e-01  5.062e-02     2.508 0.012140 *  
DESTIN_ID883         -3.923e-01  5.103e-02    -7.688 1.50e-14 ***
DESTIN_ID887          1.123e-01  5.073e-02     2.213 0.026916 *  
DESTIN_ID888         -7.894e-01  5.114e-02   -15.436  < 2e-16 ***
DESTIN_ID889         -2.369e+00  5.456e-02   -43.422  < 2e-16 ***
DESTIN_ID890         -7.911e-01  5.080e-02   -15.571  < 2e-16 ***
DESTIN_ID891         -2.137e+00  5.368e-02   -39.822  < 2e-16 ***
DESTIN_ID892         -1.415e+00  5.152e-02   -27.467  < 2e-16 ***
DESTIN_ID899         -1.531e+00  6.156e-02   -24.874  < 2e-16 ***
DESTIN_ID900         -3.027e-02  5.079e-02    -0.596 0.551173    
DESTIN_ID901         -2.899e-01  5.069e-02    -5.718 1.07e-08 ***
DESTIN_ID902          1.154e+00  5.067e-02    22.781  < 2e-16 ***
DESTIN_ID905         -4.032e-01  5.115e-02    -7.883 3.19e-15 ***
DESTIN_ID907         -2.295e+00  5.195e-02   -44.169  < 2e-16 ***
DESTIN_ID908         -4.148e-02  5.060e-02    -0.820 0.412380    
DESTIN_ID910         -1.107e+00  5.117e-02   -21.639  < 2e-16 ***
DESTIN_ID917         -1.853e+00  7.031e-02   -26.358  < 2e-16 ***
DESTIN_ID919         -3.559e-01  5.077e-02    -7.010 2.38e-12 ***
DESTIN_ID920          9.286e-03  5.071e-02     0.183 0.854713    
DESTIN_ID921          3.319e-02  5.117e-02     0.649 0.516556    
DESTIN_ID925          6.602e-01  5.054e-02    13.063  < 2e-16 ***
DESTIN_ID926         -4.159e-01  5.067e-02    -8.208 2.26e-16 ***
DESTIN_ID927         -6.878e-01  5.071e-02   -13.562  < 2e-16 ***
DESTIN_ID928         -1.605e+00  5.123e-02   -31.336  < 2e-16 ***
DESTIN_ID937         -1.638e+00  5.993e-02   -27.335  < 2e-16 ***
DESTIN_ID938         -1.042e+00  5.175e-02   -20.132  < 2e-16 ***
DESTIN_ID939          1.561e+00  5.049e-02    30.922  < 2e-16 ***
DESTIN_ID940         -6.521e-03  5.080e-02    -0.128 0.897875    
DESTIN_ID941          2.854e-01  5.103e-02     5.592 2.25e-08 ***
DESTIN_ID944         -2.507e+00  5.327e-02   -47.071  < 2e-16 ***
DESTIN_ID945         -9.310e-01  5.084e-02   -18.312  < 2e-16 ***
DESTIN_ID946         -8.339e-01  5.084e-02   -16.403  < 2e-16 ***
DESTIN_ID947         -2.533e+00  5.277e-02   -47.999  < 2e-16 ***
DESTIN_ID948         -6.636e-01  5.087e-02   -13.045  < 2e-16 ***
DESTIN_ID949          4.272e-01  5.062e-02     8.439  < 2e-16 ***
DESTIN_ID956         -2.025e+00  6.411e-02   -31.583  < 2e-16 ***
DESTIN_ID958         -5.587e-02  5.078e-02    -1.100 0.271205    
DESTIN_ID959         -1.748e-02  5.069e-02    -0.345 0.730278    
DESTIN_ID960          3.875e-01  5.077e-02     7.633 2.30e-14 ***
DESTIN_ID961         -1.396e+00  5.771e-02   -24.192  < 2e-16 ***
DESTIN_ID964         -1.028e+00  5.132e-02   -20.040  < 2e-16 ***
DESTIN_ID965         -1.039e-01  5.060e-02    -2.053 0.040084 *  
DESTIN_ID966         -1.257e+00  5.169e-02   -24.325  < 2e-16 ***
DESTIN_ID967         -2.746e+00  5.406e-02   -50.800  < 2e-16 ***
DESTIN_ID968         -8.724e-01  5.098e-02   -17.112  < 2e-16 ***
DESTIN_ID975         -3.866e+00  1.305e-01   -29.619  < 2e-16 ***
DESTIN_ID976         -1.032e+00  5.532e-02   -18.664  < 2e-16 ***
DESTIN_ID978         -7.735e-02  5.128e-02    -1.508 0.131468    
DESTIN_ID979          1.045e+00  5.070e-02    20.617  < 2e-16 ***
DESTIN_ID980          2.259e-01  5.088e-02     4.439 9.04e-06 ***
DESTIN_ID982         -4.829e-01  5.076e-02    -9.513  < 2e-16 ***
DESTIN_ID983         -5.549e-01  5.093e-02   -10.895  < 2e-16 ***
DESTIN_ID984         -6.795e-01  5.074e-02   -13.391  < 2e-16 ***
DESTIN_ID985         -1.236e+00  5.123e-02   -24.133  < 2e-16 ***
DESTIN_ID986         -1.401e+00  5.138e-02   -27.256  < 2e-16 ***
DESTIN_ID987         -2.305e+00  5.529e-02   -41.686  < 2e-16 ***
DESTIN_ID993         -2.702e+00  8.110e-02   -33.314  < 2e-16 ***
DESTIN_ID997         -1.288e-01  5.074e-02    -2.539 0.011107 *  
DESTIN_ID998         -1.055e+00  5.213e-02   -20.236  < 2e-16 ***
DESTIN_ID999          8.481e-01  5.113e-02    16.587  < 2e-16 ***
DESTIN_ID1002        -1.946e+00  5.182e-02   -37.545  < 2e-16 ***
DESTIN_ID1003         1.825e-01  5.055e-02     3.611 0.000306 ***
DESTIN_ID1004        -1.506e+00  5.160e-02   -29.191  < 2e-16 ***
DESTIN_ID1006        -5.429e-01  5.078e-02   -10.691  < 2e-16 ***
DESTIN_ID1013        -2.730e+00  8.182e-02   -33.364  < 2e-16 ***
DESTIN_ID1016        -1.028e+00  5.219e-02   -19.707  < 2e-16 ***
DESTIN_ID1017        -2.495e-01  5.083e-02    -4.908 9.21e-07 ***
DESTIN_ID1018         4.526e-01  5.068e-02     8.932  < 2e-16 ***
DESTIN_ID1021        -7.598e-01  5.079e-02   -14.960  < 2e-16 ***
DESTIN_ID1022         5.075e-01  5.052e-02    10.046  < 2e-16 ***
DESTIN_ID1023        -1.227e+00  5.102e-02   -24.039  < 2e-16 ***
DESTIN_ID1024        -6.833e-01  5.093e-02   -13.416  < 2e-16 ***
DESTIN_ID1026        -1.971e+00  5.684e-02   -34.677  < 2e-16 ***
DESTIN_ID1027        -3.353e+00  1.003e-01   -33.427  < 2e-16 ***
DESTIN_ID1031        -4.507e+00  1.138e-01   -39.592  < 2e-16 ***
DESTIN_ID1032        -2.840e-01  5.107e-02    -5.561 2.68e-08 ***
DESTIN_ID1036         1.066e+00  5.052e-02    21.100  < 2e-16 ***
DESTIN_ID1037        -6.874e-01  5.099e-02   -13.481  < 2e-16 ***
DESTIN_ID1040         5.571e-01  5.057e-02    11.015  < 2e-16 ***
DESTIN_ID1041        -3.376e-01  5.070e-02    -6.658 2.77e-11 ***
DESTIN_ID1042        -5.054e-01  5.067e-02    -9.974  < 2e-16 ***
DESTIN_ID1043        -2.753e+00  5.493e-02   -50.107  < 2e-16 ***
DESTIN_ID1045        -1.723e+00  5.201e-02   -33.122  < 2e-16 ***
DESTIN_ID1046        -3.069e+00  6.048e-02   -50.744  < 2e-16 ***
DESTIN_ID1051        -4.645e+00  1.107e-01   -41.961  < 2e-16 ***
DESTIN_ID1052         3.068e-02  5.091e-02     0.603 0.546793    
DESTIN_ID1053        -1.800e+00  5.267e-02   -34.169  < 2e-16 ***
DESTIN_ID1055        -1.219e+00  5.269e-02   -23.136  < 2e-16 ***
DESTIN_ID1056         5.587e-02  5.071e-02     1.102 0.270548    
DESTIN_ID1059        -8.046e-01  5.297e-02   -15.191  < 2e-16 ***
DESTIN_ID1060        -1.185e+00  5.105e-02   -23.203  < 2e-16 ***
DESTIN_ID1061        -1.382e-01  5.059e-02    -2.732 0.006304 ** 
DESTIN_ID1062        -7.056e-01  5.076e-02   -13.902  < 2e-16 ***
DESTIN_ID1063        -6.426e-01  5.083e-02   -12.642  < 2e-16 ***
DESTIN_ID1064         5.814e-04  5.078e-02     0.011 0.990865    
DESTIN_ID1066        -5.206e+00  1.488e-01   -34.977  < 2e-16 ***
DESTIN_ID1068        -1.610e+00  5.451e-02   -29.543  < 2e-16 ***
DESTIN_ID1070        -2.079e+00  5.503e-02   -37.780  < 2e-16 ***
DESTIN_ID1072        -3.392e+00  6.305e-02   -53.799  < 2e-16 ***
DESTIN_ID1073        -1.769e+00  5.189e-02   -34.095  < 2e-16 ***
DESTIN_ID1074        -1.001e+00  5.105e-02   -19.610  < 2e-16 ***
DESTIN_ID1075        -1.546e+00  5.132e-02   -30.127  < 2e-16 ***
DESTIN_ID1076        -1.336e+00  5.294e-02   -25.229  < 2e-16 ***
DESTIN_ID1081        -7.380e-01  5.078e-02   -14.532  < 2e-16 ***
DESTIN_ID1082         2.926e-01  5.055e-02     5.788 7.14e-09 ***
DESTIN_ID1083        -1.592e+00  5.138e-02   -30.989  < 2e-16 ***
DESTIN_ID1084        -5.890e-01  5.115e-02   -11.515  < 2e-16 ***
DESTIN_ID1085         7.347e-02  5.065e-02     1.451 0.146913    
DESTIN_ID1088        -1.387e+00  5.145e-02   -26.952  < 2e-16 ***
DESTIN_ID1089        -9.411e-01  5.122e-02   -18.374  < 2e-16 ***
DESTIN_ID1090         2.430e-01  5.073e-02     4.790 1.67e-06 ***
DESTIN_ID1092        -2.042e+00  5.357e-02   -38.121  < 2e-16 ***
DESTIN_ID1094         4.734e-01  5.056e-02     9.362  < 2e-16 ***
DESTIN_ID1095         4.278e-01  5.059e-02     8.457  < 2e-16 ***
DESTIN_ID1096        -1.473e+00  5.166e-02   -28.523  < 2e-16 ***
DESTIN_ID1102        -2.995e+00  5.708e-02   -52.475  < 2e-16 ***
DESTIN_ID1103        -2.170e+00  5.351e-02   -40.564  < 2e-16 ***
DESTIN_ID1104        -1.032e+00  5.084e-02   -20.290  < 2e-16 ***
DESTIN_ID1105         8.767e-01  5.051e-02    17.357  < 2e-16 ***
DESTIN_ID1106        -2.643e-01  5.113e-02    -5.169 2.36e-07 ***
DESTIN_ID1108        -3.362e+00  6.008e-02   -55.949  < 2e-16 ***
DESTIN_ID1109        -3.160e-01  5.076e-02    -6.227 4.77e-10 ***
DESTIN_ID1110        -8.427e-01  5.095e-02   -16.540  < 2e-16 ***
DESTIN_ID1111        -2.418e+00  5.306e-02   -45.579  < 2e-16 ***
DESTIN_ID1112        -4.785e+00  1.590e-01   -30.101  < 2e-16 ***
DESTIN_ID1113        -3.000e+00  6.748e-02   -44.465  < 2e-16 ***
DESTIN_ID1114        -1.763e+00  5.169e-02   -34.114  < 2e-16 ***
DESTIN_ID1115        -9.502e-01  5.093e-02   -18.656  < 2e-16 ***
DESTIN_ID1116        -5.686e-01  5.075e-02   -11.204  < 2e-16 ***
DESTIN_ID1117        -1.007e+00  5.140e-02   -19.582  < 2e-16 ***
DESTIN_ID1118        -1.662e+00  5.441e-02   -30.537  < 2e-16 ***
DESTIN_ID1125        -4.839e-01  5.069e-02    -9.546  < 2e-16 ***
DESTIN_ID1126        -3.500e-01  5.064e-02    -6.912 4.79e-12 ***
DESTIN_ID1127        -1.252e+00  5.146e-02   -24.319  < 2e-16 ***
DESTIN_ID1128        -6.331e-01  5.092e-02   -12.435  < 2e-16 ***
DESTIN_ID1129        -5.935e-01  5.089e-02   -11.663  < 2e-16 ***
DESTIN_ID1130        -1.670e+00  5.155e-02   -32.404  < 2e-16 ***
DESTIN_ID1133        -1.993e-01  5.067e-02    -3.933 8.40e-05 ***
DESTIN_ID1134        -1.049e+00  5.114e-02   -20.505  < 2e-16 ***
DESTIN_ID1135        -1.942e+00  5.380e-02   -36.092  < 2e-16 ***
DESTIN_ID1137         1.531e+00  5.048e-02    30.334  < 2e-16 ***
DESTIN_ID1138         1.631e+00  5.048e-02    32.316  < 2e-16 ***
DESTIN_ID1139        -1.173e+00  5.112e-02   -22.952  < 2e-16 ***
DESTIN_ID1140        -4.260e+00  1.018e-01   -41.858  < 2e-16 ***
DESTIN_ID1141        -1.624e+00  6.216e-02   -26.123  < 2e-16 ***
DESTIN_ID1146        -1.133e+00  5.136e-02   -22.052  < 2e-16 ***
DESTIN_ID1147        -2.030e-01  5.060e-02    -4.011 6.06e-05 ***
DESTIN_ID1148        -9.151e-01  5.095e-02   -17.960  < 2e-16 ***
DESTIN_ID1149        -4.108e-01  5.097e-02    -8.060 7.66e-16 ***
DESTIN_ID1150        -5.827e-01  5.106e-02   -11.411  < 2e-16 ***
DESTIN_ID1151        -1.104e+00  5.092e-02   -21.688  < 2e-16 ***
DESTIN_ID1152        -8.934e-01  5.079e-02   -17.591  < 2e-16 ***
DESTIN_ID1153        -6.336e-01  5.077e-02   -12.480  < 2e-16 ***
DESTIN_ID1154        -9.613e-01  5.104e-02   -18.835  < 2e-16 ***
DESTIN_ID1155        -8.153e-01  5.089e-02   -16.022  < 2e-16 ***
DESTIN_ID1156        -1.816e+00  5.190e-02   -34.991  < 2e-16 ***
DESTIN_ID1158        -3.571e+00  6.159e-02   -57.977  < 2e-16 ***
DESTIN_ID1159        -4.362e-01  5.066e-02    -8.610  < 2e-16 ***
DESTIN_ID1160         4.119e-02  5.064e-02     0.813 0.416019    
DESTIN_ID1162        -1.796e+00  5.740e-02   -31.280  < 2e-16 ***
DESTIN_ID1167        -4.712e-01  5.077e-02    -9.281  < 2e-16 ***
DESTIN_ID1168        -4.956e-01  5.074e-02    -9.768  < 2e-16 ***
DESTIN_ID1169        -3.723e-01  5.065e-02    -7.349 1.99e-13 ***
DESTIN_ID1170        -1.083e+00  5.102e-02   -21.232  < 2e-16 ***
DESTIN_ID1171        -2.299e-01  5.066e-02    -4.538 5.67e-06 ***
DESTIN_ID1172        -2.046e-02  5.074e-02    -0.403 0.686727    
DESTIN_ID1173        -1.445e+00  5.106e-02   -28.303  < 2e-16 ***
DESTIN_ID1174        -7.924e-01  5.080e-02   -15.598  < 2e-16 ***
DESTIN_ID1175        -5.047e-01  5.079e-02    -9.938  < 2e-16 ***
DESTIN_ID1176        -9.389e-02  5.066e-02    -1.853 0.063855 .  
DESTIN_ID1177        -2.089e+00  6.806e-02   -30.687  < 2e-16 ***
DESTIN_ID1179        -7.126e-01  5.087e-02   -14.009  < 2e-16 ***
DESTIN_ID1180        -1.404e+00  5.122e-02   -27.416  < 2e-16 ***
DESTIN_ID1181        -4.805e-01  5.107e-02    -9.410  < 2e-16 ***
DESTIN_ID1188        -1.211e+00  5.194e-02   -23.320  < 2e-16 ***
DESTIN_ID1189         1.490e-01  5.058e-02     2.946 0.003216 ** 
DESTIN_ID1190        -8.079e-01  5.084e-02   -15.889  < 2e-16 ***
DESTIN_ID1192        -9.853e-02  5.063e-02    -1.946 0.051645 .  
DESTIN_ID1193        -3.480e-02  5.058e-02    -0.688 0.491464    
DESTIN_ID1194         1.358e-01  5.065e-02     2.681 0.007343 ** 
DESTIN_ID1195         7.289e-01  5.051e-02    14.431  < 2e-16 ***
DESTIN_ID1196        -7.746e-01  5.073e-02   -15.268  < 2e-16 ***
DESTIN_ID1197        -8.955e-01  5.075e-02   -17.646  < 2e-16 ***
DESTIN_ID1198        -5.168e-02  5.066e-02    -1.020 0.307595    
DESTIN_ID1201        -1.778e-01  5.072e-02    -3.506 0.000455 ***
DESTIN_ID1202        -4.189e-01  5.084e-02    -8.239  < 2e-16 ***
DESTIN_ID1210         6.562e-01  5.053e-02    12.986  < 2e-16 ***
DESTIN_ID1211        -4.979e-02  5.060e-02    -0.984 0.325114    
DESTIN_ID1212         2.192e-01  5.055e-02     4.336 1.45e-05 ***
DESTIN_ID1213        -2.434e-01  5.068e-02    -4.803 1.57e-06 ***
DESTIN_ID1214        -1.001e+00  5.100e-02   -19.627  < 2e-16 ***
DESTIN_ID1215         8.624e-01  5.049e-02    17.080  < 2e-16 ***
DESTIN_ID1216        -9.044e-01  5.073e-02   -17.829  < 2e-16 ***
DESTIN_ID1217        -1.077e+00  5.079e-02   -21.207  < 2e-16 ***
DESTIN_ID1218         1.160e+00  5.048e-02    22.984  < 2e-16 ***
DESTIN_ID1219         7.671e-02  5.060e-02     1.516 0.129555    
DESTIN_ID1220         6.056e-01  5.065e-02    11.956  < 2e-16 ***
DESTIN_ID1222        -2.462e+00  5.397e-02   -45.628  < 2e-16 ***
DESTIN_ID1223        -6.941e-01  5.106e-02   -13.595  < 2e-16 ***
DESTIN_ID1233         7.278e-01  5.052e-02    14.407  < 2e-16 ***
DESTIN_ID1234         1.343e-01  5.056e-02     2.656 0.007909 ** 
DESTIN_ID1235         3.596e-02  5.058e-02     0.711 0.477186    
DESTIN_ID1236        -7.112e-01  5.085e-02   -13.985  < 2e-16 ***
DESTIN_ID1237        -5.611e-01  5.065e-02   -11.077  < 2e-16 ***
DESTIN_ID1238        -4.749e-01  5.062e-02    -9.382  < 2e-16 ***
DESTIN_ID1239        -3.125e-01  5.064e-02    -6.171 6.77e-10 ***
DESTIN_ID1240        -7.261e-01  5.074e-02   -14.310  < 2e-16 ***
DESTIN_ID1241        -3.137e-01  5.067e-02    -6.191 5.99e-10 ***
DESTIN_ID1245        -1.642e+00  5.188e-02   -31.660  < 2e-16 ***
DESTIN_ID1253        -2.750e+00  5.812e-02   -47.311  < 2e-16 ***
DESTIN_ID1254        -1.385e+00  5.130e-02   -27.000  < 2e-16 ***
DESTIN_ID1255         4.829e-01  5.053e-02     9.558  < 2e-16 ***
DESTIN_ID1256        -1.018e+00  5.089e-02   -20.009  < 2e-16 ***
DESTIN_ID1257        -7.298e-01  5.076e-02   -14.378  < 2e-16 ***
DESTIN_ID1258        -1.679e-01  5.074e-02    -3.310 0.000934 ***
DESTIN_ID1259        -7.954e-01  5.092e-02   -15.622  < 2e-16 ***
DESTIN_ID1260        -5.719e-01  5.067e-02   -11.287  < 2e-16 ***
DESTIN_ID1261        -5.396e-01  5.070e-02   -10.644  < 2e-16 ***
DESTIN_ID1263        -1.111e+00  5.162e-02   -21.534  < 2e-16 ***
DESTIN_ID1266        -2.759e+00  5.564e-02   -49.593  < 2e-16 ***
DESTIN_ID1272        -8.045e-01  5.129e-02   -15.686  < 2e-16 ***
DESTIN_ID1273        -7.440e-02  5.062e-02    -1.470 0.141603    
DESTIN_ID1274        -7.311e-01  5.071e-02   -14.417  < 2e-16 ***
DESTIN_ID1275        -9.167e-01  5.074e-02   -18.066  < 2e-16 ***
DESTIN_ID1276        -8.033e-01  5.071e-02   -15.841  < 2e-16 ***
DESTIN_ID1277        -6.022e-01  5.068e-02   -11.881  < 2e-16 ***
DESTIN_ID1278        -2.595e+00  5.225e-02   -49.659  < 2e-16 ***
DESTIN_ID1279        -2.505e-01  5.073e-02    -4.938 7.87e-07 ***
DESTIN_ID1280         7.708e-01  5.054e-02    15.252  < 2e-16 ***
DESTIN_ID1281        -2.998e+00  6.407e-02   -46.794  < 2e-16 ***
DESTIN_ID1283        -2.680e+00  5.855e-02   -45.778  < 2e-16 ***
DESTIN_ID1289        -2.158e+00  7.638e-02   -28.254  < 2e-16 ***
DESTIN_ID1290        -3.706e+00  1.116e-01   -33.218  < 2e-16 ***
DESTIN_ID1291        -2.153e+00  5.372e-02   -40.076  < 2e-16 ***
DESTIN_ID1292        -6.304e-01  5.076e-02   -12.420  < 2e-16 ***
DESTIN_ID1293        -3.577e-02  5.057e-02    -0.707 0.479402    
DESTIN_ID1294        -4.509e-01  5.070e-02    -8.894  < 2e-16 ***
DESTIN_ID1295         4.591e-02  5.081e-02     0.904 0.366161    
DESTIN_ID1296        -1.700e+00  5.122e-02   -33.196  < 2e-16 ***
DESTIN_ID1297        -1.499e+00  5.481e-02   -27.356  < 2e-16 ***
DESTIN_ID1298        -8.155e-01  5.086e-02   -16.036  < 2e-16 ***
DESTIN_ID1300        -2.666e+00  6.552e-02   -40.686  < 2e-16 ***
DESTIN_ID1301        -1.429e+00  5.309e-02   -26.917  < 2e-16 ***
DESTIN_ID1302        -5.539e-01  5.129e-02   -10.799  < 2e-16 ***
DESTIN_ID1307        -3.705e+00  1.079e-01   -34.345  < 2e-16 ***
DESTIN_ID1308        -3.667e+00  1.208e-01   -30.359  < 2e-16 ***
DESTIN_ID1310        -4.432e-01  5.068e-02    -8.744  < 2e-16 ***
DESTIN_ID1311         1.149e-01  5.056e-02     2.272 0.023089 *  
DESTIN_ID1312        -6.239e-01  5.073e-02   -12.299  < 2e-16 ***
DESTIN_ID1313        -4.123e+00  7.019e-02   -58.751  < 2e-16 ***
DESTIN_ID1314        -1.492e+00  5.102e-02   -29.243  < 2e-16 ***
DESTIN_ID1315        -1.118e+00  5.105e-02   -21.902  < 2e-16 ***
DESTIN_ID1316         2.091e-01  5.061e-02     4.133 3.58e-05 ***
DESTIN_ID1317        -1.798e+00  5.222e-02   -34.427  < 2e-16 ***
DESTIN_ID1320        -1.920e+00  5.493e-02   -34.944  < 2e-16 ***
DESTIN_ID1325        -1.507e+00  5.383e-02   -27.992  < 2e-16 ***
DESTIN_ID1326        -4.816e-01  5.063e-02    -9.511  < 2e-16 ***
DESTIN_ID1327        -1.711e-01  5.060e-02    -3.381 0.000722 ***
DESTIN_ID1328        -5.364e-01  5.075e-02   -10.569  < 2e-16 ***
DESTIN_ID1329        -2.265e+00  5.188e-02   -43.655  < 2e-16 ***
DESTIN_ID1330        -2.267e+00  5.192e-02   -43.656  < 2e-16 ***
DESTIN_ID1331         4.041e-01  5.057e-02     7.992 1.32e-15 ***
DESTIN_ID1332        -7.017e-01  5.193e-02   -13.514  < 2e-16 ***
DESTIN_ID1333        -1.441e+00  5.145e-02   -28.000  < 2e-16 ***
DESTIN_ID1334        -1.026e+00  5.150e-02   -19.919  < 2e-16 ***
DESTIN_ID1338        -3.728e+00  1.788e-01   -20.854  < 2e-16 ***
DESTIN_ID1339        -1.489e+00  5.423e-02   -27.454  < 2e-16 ***
DESTIN_ID1341        -2.148e+00  5.252e-02   -40.897  < 2e-16 ***
DESTIN_ID1342         3.574e-01  5.054e-02     7.072 1.53e-12 ***
DESTIN_ID1343        -6.092e-01  5.071e-02   -12.013  < 2e-16 ***
DESTIN_ID1344         1.016e+00  5.049e-02    20.128  < 2e-16 ***
DESTIN_ID1345        -1.994e+00  5.138e-02   -38.804  < 2e-16 ***
DESTIN_ID1346        -1.927e-01  5.064e-02    -3.805 0.000142 ***
DESTIN_ID1347        -8.869e-01  5.093e-02   -17.414  < 2e-16 ***
DESTIN_ID1348         1.028e-01  5.066e-02     2.030 0.042340 *  
DESTIN_ID1349        -1.003e+00  5.336e-02   -18.797  < 2e-16 ***
DESTIN_ID1355        -5.917e-01  5.148e-02   -11.494  < 2e-16 ***
DESTIN_ID1356        -5.553e-01  5.067e-02   -10.960  < 2e-16 ***
DESTIN_ID1357         2.470e-01  5.071e-02     4.870 1.12e-06 ***
DESTIN_ID1358        -2.453e-01  5.084e-02    -4.825 1.40e-06 ***
DESTIN_ID1359        -1.413e-01  5.060e-02    -2.791 0.005249 ** 
DESTIN_ID1360        -1.102e+00  5.084e-02   -21.670  < 2e-16 ***
DESTIN_ID1361        -5.831e-02  5.058e-02    -1.153 0.249057    
DESTIN_ID1362        -1.128e+00  5.089e-02   -22.155  < 2e-16 ***
DESTIN_ID1363        -5.854e-01  5.083e-02   -11.518  < 2e-16 ***
DESTIN_ID1364        -2.347e+00  5.630e-02   -41.685  < 2e-16 ***
DESTIN_ID1370        -1.273e+00  5.110e-02   -24.907  < 2e-16 ***
DESTIN_ID1371        -7.356e-01  5.074e-02   -14.498  < 2e-16 ***
DESTIN_ID1372        -1.041e-01  5.060e-02    -2.058 0.039638 *  
DESTIN_ID1373        -5.004e-01  5.095e-02    -9.821  < 2e-16 ***
DESTIN_ID1374        -9.525e-01  5.075e-02   -18.768  < 2e-16 ***
DESTIN_ID1376        -1.311e-01  5.059e-02    -2.591 0.009582 ** 
DESTIN_ID1377        -5.196e+00  9.693e-02   -53.608  < 2e-16 ***
DESTIN_ID1378        -3.182e+00  7.291e-02   -43.639  < 2e-16 ***
DESTIN_ID1383        -6.043e-01  5.139e-02   -11.758  < 2e-16 ***
DESTIN_ID1384        -8.889e-01  5.090e-02   -17.465  < 2e-16 ***
DESTIN_ID1385        -7.917e-01  5.077e-02   -15.593  < 2e-16 ***
DESTIN_ID1386        -6.971e-01  5.121e-02   -13.614  < 2e-16 ***
DESTIN_ID1387        -1.586e+00  5.121e-02   -30.973  < 2e-16 ***
DESTIN_ID1388        -1.773e+00  5.136e-02   -34.516  < 2e-16 ***
DESTIN_ID1389        -7.949e-01  5.080e-02   -15.648  < 2e-16 ***
DESTIN_ID1390        -5.604e-01  5.076e-02   -11.040  < 2e-16 ***
DESTIN_ID1391        -1.591e+00  5.144e-02   -30.936  < 2e-16 ***
DESTIN_ID1396        -9.475e-01  5.095e-02   -18.597  < 2e-16 ***
DESTIN_ID1397         1.497e-01  5.058e-02     2.959 0.003083 ** 
DESTIN_ID1398        -8.186e-01  5.082e-02   -16.108  < 2e-16 ***
DESTIN_ID1399        -5.742e-01  5.073e-02   -11.319  < 2e-16 ***
DESTIN_ID1400        -4.138e-01  5.077e-02    -8.150 3.63e-16 ***
DESTIN_ID1401        -1.214e+00  5.090e-02   -23.851  < 2e-16 ***
DESTIN_ID1402         6.462e-03  5.057e-02     0.128 0.898328    
DESTIN_ID1403        -2.123e+00  5.245e-02   -40.468  < 2e-16 ***
DESTIN_ID1408        -9.748e-01  5.122e-02   -19.030  < 2e-16 ***
DESTIN_ID1409        -2.328e-01  5.066e-02    -4.595 4.32e-06 ***
DESTIN_ID1410        -6.356e-01  5.069e-02   -12.538  < 2e-16 ***
DESTIN_ID1411         2.162e-01  5.056e-02     4.277 1.90e-05 ***
DESTIN_ID1412        -1.304e+00  5.131e-02   -25.413  < 2e-16 ***
DESTIN_ID1413         6.908e-01  5.055e-02    13.667  < 2e-16 ***
DESTIN_ID1414         5.801e-01  5.051e-02    11.487  < 2e-16 ***
DESTIN_ID1415        -9.067e-01  5.087e-02   -17.823  < 2e-16 ***
DESTIN_ID1416        -4.521e-01  5.075e-02    -8.909  < 2e-16 ***
DESTIN_ID1417        -2.223e+00  5.651e-02   -39.345  < 2e-16 ***
DESTIN_ID1421        -1.986e+00  5.281e-02   -37.611  < 2e-16 ***
DESTIN_ID1422         3.327e-01  5.053e-02     6.585 4.56e-11 ***
DESTIN_ID1423        -1.304e-01  5.060e-02    -2.578 0.009943 ** 
DESTIN_ID1424        -7.047e-01  5.094e-02   -13.834  < 2e-16 ***
DESTIN_ID1425        -6.088e-02  5.063e-02    -1.203 0.229120    
DESTIN_ID1426        -4.881e-01  5.063e-02    -9.640  < 2e-16 ***
DESTIN_ID1427        -1.547e-01  5.059e-02    -3.059 0.002222 ** 
DESTIN_ID1428        -1.152e+00  5.085e-02   -22.653  < 2e-16 ***
DESTIN_ID1429        -1.257e+00  5.112e-02   -24.586  < 2e-16 ***
DESTIN_ID1432        -1.157e+00  5.175e-02   -22.359  < 2e-16 ***
DESTIN_ID1433        -6.207e-01  5.081e-02   -12.216  < 2e-16 ***
DESTIN_ID1434        -1.253e+00  5.128e-02   -24.436  < 2e-16 ***
DESTIN_ID1435         2.876e-01  5.058e-02     5.686 1.30e-08 ***
DESTIN_ID1436        -5.856e-02  5.179e-02    -1.131 0.258164    
DESTIN_ID1437        -4.956e-01  5.077e-02    -9.762  < 2e-16 ***
DESTIN_ID1438        -6.383e-01  5.070e-02   -12.591  < 2e-16 ***
DESTIN_ID1439         4.664e-01  5.053e-02     9.230  < 2e-16 ***
DESTIN_ID1440         1.072e+00  5.049e-02    21.234  < 2e-16 ***
DESTIN_ID1441        -8.640e-01  5.088e-02   -16.981  < 2e-16 ***
DESTIN_ID1444        -7.383e-01  5.087e-02   -14.514  < 2e-16 ***
DESTIN_ID1445         1.552e-01  5.057e-02     3.069 0.002150 ** 
DESTIN_ID1446        -1.232e-02  5.065e-02    -0.243 0.807895    
DESTIN_ID1447         2.658e-01  5.119e-02     5.192 2.08e-07 ***
DESTIN_ID1448         1.156e+00  5.095e-02    22.690  < 2e-16 ***
DESTIN_ID1449        -2.230e+00  5.223e-02   -42.705  < 2e-16 ***
DESTIN_ID1450        -6.326e-01  5.069e-02   -12.481  < 2e-16 ***
DESTIN_ID1451        -6.058e-01  5.066e-02   -11.957  < 2e-16 ***
DESTIN_ID1452        -1.784e+00  5.137e-02   -34.736  < 2e-16 ***
DESTIN_ID1453        -9.977e-01  5.158e-02   -19.344  < 2e-16 ***
DESTIN_ID1455        -1.027e+00  5.119e-02   -20.068  < 2e-16 ***
DESTIN_ID1456        -9.085e-01  5.132e-02   -17.701  < 2e-16 ***
DESTIN_ID1457        -4.838e-01  5.073e-02    -9.536  < 2e-16 ***
DESTIN_ID1458         2.314e-01  5.058e-02     4.576 4.75e-06 ***
DESTIN_ID1459        -2.430e+00  6.188e-02   -39.265  < 2e-16 ***
DESTIN_ID1461        -2.164e+00  5.466e-02   -39.582  < 2e-16 ***
DESTIN_ID1462        -1.453e+00  5.109e-02   -28.443  < 2e-16 ***
DESTIN_ID1463         2.515e-01  5.054e-02     4.975 6.51e-07 ***
DESTIN_ID1464         1.122e+00  5.049e-02    22.223  < 2e-16 ***
DESTIN_ID1465        -1.036e+00  5.274e-02   -19.638  < 2e-16 ***
DESTIN_ID1466         6.729e-01  5.055e-02    13.313  < 2e-16 ***
DESTIN_ID1467        -3.630e-02  5.059e-02    -0.718 0.472983    
DESTIN_ID1468         6.509e-02  5.058e-02     1.287 0.198159    
DESTIN_ID1471        -8.741e-01  5.160e-02   -16.941  < 2e-16 ***
DESTIN_ID1472        -1.641e+00  5.172e-02   -31.732  < 2e-16 ***
DESTIN_ID1473        -1.222e+00  5.096e-02   -23.981  < 2e-16 ***
DESTIN_ID1474         4.246e-01  5.053e-02     8.403  < 2e-16 ***
DESTIN_ID1475        -2.676e+00  5.554e-02   -48.182  < 2e-16 ***
DESTIN_ID1478        -9.076e-01  5.089e-02   -17.837  < 2e-16 ***
DESTIN_ID1479        -2.635e+00  5.397e-02   -48.824  < 2e-16 ***
DESTIN_ID1480         2.188e-01  5.060e-02     4.324 1.53e-05 ***
DESTIN_ID1483         2.112e-01  5.101e-02     4.140 3.47e-05 ***
DESTIN_ID1485        -9.497e-01  5.089e-02   -18.661  < 2e-16 ***
DESTIN_ID1486        -2.234e+00  5.268e-02   -42.399  < 2e-16 ***
DESTIN_ID1487        -1.755e+00  5.499e-02   -31.910  < 2e-16 ***
DESTIN_ID1488        -2.139e-01  5.071e-02    -4.219 2.45e-05 ***
DESTIN_ID1489        -1.894e+00  5.241e-02   -36.141  < 2e-16 ***
DESTIN_ID1490        -1.109e+00  5.108e-02   -21.718  < 2e-16 ***
DESTIN_ID1491        -1.497e+00  5.265e-02   -28.426  < 2e-16 ***
DESTIN_ID1494        -2.835e+00  7.689e-02   -36.868  < 2e-16 ***
DESTIN_ID1495        -2.829e+00  5.926e-02   -47.736  < 2e-16 ***
DESTIN_ID1496        -9.085e-01  5.093e-02   -17.837  < 2e-16 ***
DESTIN_ID1500        -1.189e+00  5.126e-02   -23.203  < 2e-16 ***
DESTIN_ID1501        -7.496e-02  5.063e-02    -1.481 0.138710    
DESTIN_ID1502         3.212e-01  5.057e-02     6.351 2.14e-10 ***
DESTIN_ID1506        -4.222e+00  1.305e-01   -32.346  < 2e-16 ***
DESTIN_ID1507        -1.377e+00  5.138e-02   -26.807  < 2e-16 ***
DESTIN_ID1508        -1.498e+00  5.259e-02   -28.479  < 2e-16 ***
DESTIN_ID1510        -4.747e-02  5.074e-02    -0.936 0.349452    
DESTIN_ID1511        -1.308e+00  5.177e-02   -25.266  < 2e-16 ***
DESTIN_ID1512        -5.720e-01  5.113e-02   -11.187  < 2e-16 ***
DESTIN_ID1513        -2.147e+00  5.223e-02   -41.098  < 2e-16 ***
DESTIN_ID1516        -2.631e-02  5.128e-02    -0.513 0.607862    
DESTIN_ID1518        -1.829e+00  5.265e-02   -34.740  < 2e-16 ***
DESTIN_ID1521        -8.296e-01  5.091e-02   -16.295  < 2e-16 ***
DESTIN_ID1522         2.088e-01  5.059e-02     4.127 3.67e-05 ***
DESTIN_ID1523        -1.123e+00  5.104e-02   -21.997  < 2e-16 ***
DESTIN_ID1526        -1.878e+00  5.553e-02   -33.810  < 2e-16 ***
DESTIN_ID1530        -1.708e+00  5.310e-02   -32.168  < 2e-16 ***
DESTIN_ID1531        -1.479e+00  5.373e-02   -27.523  < 2e-16 ***
DESTIN_ID1532        -8.253e-01  5.084e-02   -16.235  < 2e-16 ***
DESTIN_ID1533        -1.524e+00  5.142e-02   -29.639  < 2e-16 ***
DESTIN_ID1534        -2.826e+00  5.874e-02   -48.113  < 2e-16 ***
DESTIN_ID1535        -2.084e+00  5.696e-02   -36.580  < 2e-16 ***
DESTIN_ID1536         6.847e-01  5.158e-02    13.275  < 2e-16 ***
DESTIN_ID1541        -6.124e-01  5.088e-02   -12.035  < 2e-16 ***
DESTIN_ID1542         1.310e+00  5.048e-02    25.944  < 2e-16 ***
DESTIN_ID1543        -1.630e+00  5.142e-02   -31.699  < 2e-16 ***
DESTIN_ID1544        -1.594e-01  5.067e-02    -3.145 0.001661 ** 
DESTIN_ID1545        -1.300e+00  5.138e-02   -25.300  < 2e-16 ***
DESTIN_ID1546        -8.668e-01  5.099e-02   -17.000  < 2e-16 ***
DESTIN_ID1553        -4.667e-01  5.075e-02    -9.197  < 2e-16 ***
DESTIN_ID1554        -5.839e-01  5.068e-02   -11.521  < 2e-16 ***
DESTIN_ID1555        -1.544e+00  5.108e-02   -30.222  < 2e-16 ***
DESTIN_ID1556        -2.094e-02  5.065e-02    -0.413 0.679353    
DESTIN_ID1557        -8.432e-01  5.089e-02   -16.568  < 2e-16 ***
DESTIN_ID1558         5.931e-01  5.056e-02    11.730  < 2e-16 ***
DESTIN_ID1562        -1.593e+00  5.162e-02   -30.857  < 2e-16 ***
DESTIN_ID1563        -5.181e-01  5.069e-02   -10.222  < 2e-16 ***
DESTIN_ID1564         9.216e-02  5.058e-02     1.822 0.068434 .  
DESTIN_ID1565        -9.620e-03  5.060e-02    -0.190 0.849225    
DESTIN_ID1566        -5.692e-01  5.074e-02   -11.217  < 2e-16 ***
DESTIN_ID1568        -2.070e-01  5.072e-02    -4.081 4.48e-05 ***
DESTIN_ID1573        -1.432e+00  5.121e-02   -27.963  < 2e-16 ***
DESTIN_ID1574        -7.933e-01  5.093e-02   -15.575  < 2e-16 ***
DESTIN_ID1575        -2.760e+00  5.276e-02   -52.313  < 2e-16 ***
DESTIN_ID1576        -3.432e-01  5.061e-02    -6.781 1.19e-11 ***
DESTIN_ID1577        -1.337e+00  5.123e-02   -26.106  < 2e-16 ***
DESTIN_ID1578        -2.275e-01  5.072e-02    -4.486 7.27e-06 ***
DESTIN_ID1584        -2.278e-01  5.066e-02    -4.496 6.93e-06 ***
DESTIN_ID1585        -1.905e-01  5.088e-02    -3.744 0.000181 ***
DESTIN_ID1586         1.953e-01  5.054e-02     3.863 0.000112 ***
DESTIN_ID1587         2.489e-01  5.054e-02     4.924 8.47e-07 ***
DESTIN_ID1588        -1.973e+00  5.232e-02   -37.704  < 2e-16 ***
DESTIN_ID1589        -8.633e-01  5.108e-02   -16.902  < 2e-16 ***
DESTIN_ID1593        -2.682e-01  5.077e-02    -5.282 1.27e-07 ***
DESTIN_ID1594         6.027e-01  5.055e-02    11.924  < 2e-16 ***
DESTIN_ID1595        -6.329e-02  5.060e-02    -1.251 0.211008    
DESTIN_ID1596         1.421e+00  5.048e-02    28.147  < 2e-16 ***
DESTIN_ID1597        -3.007e+00  5.668e-02   -53.049  < 2e-16 ***
DESTIN_ID1598        -1.301e+00  5.108e-02   -25.472  < 2e-16 ***
DESTIN_ID1602        -1.320e+00  8.120e-02   -16.254  < 2e-16 ***
DESTIN_ID1603        -4.841e+00  1.260e-01   -38.416  < 2e-16 ***
DESTIN_ID1604        -2.682e-01  5.068e-02    -5.292 1.21e-07 ***
DESTIN_ID1605        -1.803e+00  5.127e-02   -35.167  < 2e-16 ***
DESTIN_ID1606        -1.003e+00  5.082e-02   -19.738  < 2e-16 ***
DESTIN_ID1607         4.716e-01  5.056e-02     9.327  < 2e-16 ***
DESTIN_ID1608        -2.617e+00  5.842e-02   -44.793  < 2e-16 ***
DESTIN_ID1611        -1.772e+00  5.227e-02   -33.900  < 2e-16 ***
DESTIN_ID1612        -4.828e-01  5.082e-02    -9.499  < 2e-16 ***
DESTIN_ID1613         3.052e-01  5.062e-02     6.028 1.66e-09 ***
DESTIN_ID1614        -4.019e-01  5.064e-02    -7.937 2.07e-15 ***
DESTIN_ID1615        -8.715e-01  5.104e-02   -17.075  < 2e-16 ***
DESTIN_ID1616         1.064e+00  5.051e-02    21.067  < 2e-16 ***
DESTIN_ID1620        -1.169e+00  5.205e-02   -22.466  < 2e-16 ***
DESTIN_ID1621         5.092e-01  5.059e-02    10.065  < 2e-16 ***
DESTIN_ID1622        -1.345e+00  5.116e-02   -26.282  < 2e-16 ***
DESTIN_ID1623         6.451e-01  5.052e-02    12.770  < 2e-16 ***
DESTIN_ID1624        -2.601e-01  5.069e-02    -5.131 2.88e-07 ***
DESTIN_ID1629        -8.048e-01  5.198e-02   -15.485  < 2e-16 ***
DESTIN_ID1630        -4.994e-01  5.081e-02    -9.830  < 2e-16 ***
DESTIN_ID1631        -7.068e-01  5.096e-02   -13.870  < 2e-16 ***
DESTIN_ID1632        -1.393e+00  5.107e-02   -27.272  < 2e-16 ***
DESTIN_ID1633        -8.937e-01  5.104e-02   -17.510  < 2e-16 ***
DESTIN_ID1638        -3.413e-02  5.086e-02    -0.671 0.502124    
DESTIN_ID1639        -6.568e-01  5.117e-02   -12.836  < 2e-16 ***
DESTIN_ID1640        -1.294e+00  5.106e-02   -25.335  < 2e-16 ***
DESTIN_ID1641        -2.552e-01  5.073e-02    -5.031 4.89e-07 ***
DESTIN_ID1642        -1.849e+00  6.164e-02   -29.991  < 2e-16 ***
DESTIN_ID1646         3.144e-01  5.098e-02     6.168 6.92e-10 ***
DESTIN_ID1647        -3.312e-01  5.108e-02    -6.484 8.91e-11 ***
DESTIN_ID1648         2.940e-01  5.071e-02     5.798 6.73e-09 ***
DESTIN_ID1649        -9.511e-01  5.093e-02   -18.673  < 2e-16 ***
DESTIN_ID1654         1.808e-01  5.118e-02     3.533 0.000411 ***
DESTIN_ID1655         1.429e+00  5.087e-02    28.083  < 2e-16 ***
DESTIN_ID1656        -4.952e-01  5.100e-02    -9.709  < 2e-16 ***
DESTIN_ID1657        -3.853e-03  5.073e-02    -0.076 0.939451    
DESTIN_ID1658         1.883e-02  5.175e-02     0.364 0.715950    
DESTIN_ID1664         1.360e-01  5.152e-02     2.640 0.008290 ** 
DESTIN_ID1665        -2.506e+00  5.571e-02   -44.981  < 2e-16 ***
DESTIN_ID1666        -4.561e-01  5.103e-02    -8.937  < 2e-16 ***
DESTIN_ID1667         4.526e-01  5.200e-02     8.705  < 2e-16 ***
DESTIN_ID1674        -1.040e+00  5.434e-02   -19.146  < 2e-16 ***
DESTIN_ID1675        -4.645e-01  5.174e-02    -8.977  < 2e-16 ***
DESTIN_ID1676        -6.866e-01  5.129e-02   -13.386  < 2e-16 ***
DESTIN_ID1682         6.385e-01  5.077e-02    12.576  < 2e-16 ***
DESTIN_ID1685        -8.952e-01  5.140e-02   -17.415  < 2e-16 ***
DESTIN_ID1686        -6.100e-01  5.131e-02   -11.889  < 2e-16 ***
DESTIN_ID1691        -8.461e-01  5.198e-02   -16.276  < 2e-16 ***
DESTIN_ID1693        -1.324e+00  5.442e-02   -24.330  < 2e-16 ***
DESTIN_ID1695        -1.338e+00  5.582e-02   -23.970  < 2e-16 ***
DESTIN_ID1698         8.603e-01  5.268e-02    16.332  < 2e-16 ***
DESTIN_ID1704        -5.977e-02  5.099e-02    -1.172 0.241127    
DESTIN_ID1711         2.029e+00  5.055e-02    40.145  < 2e-16 ***
DESTIN_ID1714        -3.493e+00  7.813e-02   -44.713  < 2e-16 ***
DESTIN_ID1722         1.341e+00  5.064e-02    26.489  < 2e-16 ***
DESTIN_ID1723        -3.934e+00  8.257e-02   -47.639  < 2e-16 ***
DESTIN_ID1726         3.348e-02  5.589e-02     0.599 0.549141    
DESTIN_ID1731         4.527e-03  5.135e-02     0.088 0.929760    
DESTIN_ID1732        -3.817e-01  5.145e-02    -7.419 1.18e-13 ***
DESTIN_ID1741         3.475e-01  5.177e-02     6.713 1.90e-11 ***
DESTIN_ID1742         9.403e-01  5.083e-02    18.500  < 2e-16 ***
DESTIN_ID1750         4.671e-02  5.514e-02     0.847 0.396901    
DESTIN_ID1751        -5.230e-01  5.471e-02    -9.560  < 2e-16 ***
DESTIN_ID1768         1.021e+00  5.359e-02    19.051  < 2e-16 ***
log(ORIGIN_BUSINESS) -1.368e-01  2.337e-04  -585.299  < 2e-16 ***
log(ORIGIN_FINSER)    1.863e-01  3.078e-04   605.203  < 2e-16 ***
log(ORIGIN_HDB)       1.446e-01  8.715e-05  1659.138  < 2e-16 ***
log(ORIGIN_RETAIL)    2.594e-02  2.516e-04   103.091  < 2e-16 ***
log(ORIGIN_SCHOOLS)   2.017e-01  6.235e-04   323.504  < 2e-16 ***
log(dist)            -1.466e+00  2.598e-04 -5642.968  < 2e-16 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

(Dispersion parameter for poisson family taken to be 1)

    Null deviance: 98394406  on 65075  degrees of freedom
Residual deviance: 36528458  on 64249  degrees of freedom
AIC: 36887407

Number of Fisher Scoring iterations: 8

Goodness of fit

With the aid of R-squared statistics , we will compute the proportion of variance in the dependent variables.

CalcRSquared(decSIM$data$TRIPS, decSIM$fitted.values)
[1] 0.3991156

With reference to the R-squared above, we can conclude that the model accounts for about 40% of the variation of flows in the system. In addition, the p-value is less than the alpha of 0.05, we will reject the null hypothesis that the mean is a good estimator for the five ORIGIN variables.

Looking at the explanatory variables, we note that Retail contributed the most in commuting flow , followed by Schools, Financial Service, and HDB. We also note that their relationship are not the same as Business results in negative value. We could infer that most people commute to Retail spot followed by Schools.

5.6 Doubly constrained SIM

The last model that we are looking at will be the Doubly Constrained model. The flow value are not pre-determined. We will save the output - dbcSIM into a RDS format and re-load into the R environment.

Show the code
dbcSIM <- glm(formula = TRIPS ~ 
                ORIGIN_ID + 
                DESTIN_ID + 
                log(dist),
              family = poisson(link = "log"),
              data = flow_data2,
              na.action = na.exclude)
#save RDS
write_rds(dbcSIM, "data/rds/dbcSIM.rds")

As we are not executing the code chunk above, we will load orcSIM into the R environment.

dbcSIM <- read_rds("data/rds/dbcSIM.rds")

Click on to view the summary statistics of dbcSIM.

summary(dbcSIM)

Call:
glm(formula = TRIPS ~ ORIGIN_ID + DESTIN_ID + log(dist), family = poisson(link = "log"), 
    data = flow_data2, na.action = na.exclude)

Deviance Residuals: 
    Min       1Q   Median       3Q      Max  
-189.33    -9.60    -3.37     2.31   372.65  

Coefficients:
                Estimate Std. Error   z value Pr(>|z|)    
(Intercept)   14.3860005  0.1374346   104.675  < 2e-16 ***
ORIGIN_ID29    2.1840229  0.1912094    11.422  < 2e-16 ***
ORIGIN_ID40    2.1396307  0.1978770    10.813  < 2e-16 ***
ORIGIN_ID41    0.1038446  0.1693600     0.613 0.539771    
ORIGIN_ID48   -0.4974225  0.1501231    -3.313 0.000922 ***
ORIGIN_ID49    1.7386704  0.1300958    13.365  < 2e-16 ***
ORIGIN_ID50    3.3865532  0.1299738    26.056  < 2e-16 ***
ORIGIN_ID51    0.7829441  0.1373791     5.699 1.20e-08 ***
ORIGIN_ID59    2.3030475  0.1435902    16.039  < 2e-16 ***
ORIGIN_ID60    0.9824621  0.1315820     7.467 8.23e-14 ***
ORIGIN_ID61    2.3890020  0.1495387    15.976  < 2e-16 ***
ORIGIN_ID62    4.2243359  0.1287717    32.805  < 2e-16 ***
ORIGIN_ID63    0.8034461  0.1451951     5.534 3.14e-08 ***
ORIGIN_ID69    4.5157686  0.1292217    34.946  < 2e-16 ***
ORIGIN_ID70    1.0925801  0.1447847     7.546 4.48e-14 ***
ORIGIN_ID71    1.6196911  0.1375824    11.773  < 2e-16 ***
ORIGIN_ID72    2.5860763  0.1293534    19.992  < 2e-16 ***
ORIGIN_ID73    0.4539884  0.1457986     3.114 0.001847 ** 
ORIGIN_ID74    0.9988701  0.1369999     7.291 3.08e-13 ***
ORIGIN_ID82    2.5311173  0.1356522    18.659  < 2e-16 ***
ORIGIN_ID83    1.9956706  0.1383737    14.422  < 2e-16 ***
ORIGIN_ID85    1.9898587  0.1330660    14.954  < 2e-16 ***
ORIGIN_ID86    2.9967711  0.1299804    23.056  < 2e-16 ***
ORIGIN_ID87    5.4032648  0.1279345    42.235  < 2e-16 ***
ORIGIN_ID98    0.9638569  0.1446107     6.665 2.64e-11 ***
ORIGIN_ID99    1.1349137  0.1371346     8.276  < 2e-16 ***
ORIGIN_ID100   1.9391368  0.1324593    14.639  < 2e-16 ***
ORIGIN_ID109   0.2660774  0.1845141     1.442 0.149290    
ORIGIN_ID111   1.8474423  0.1342899    13.757  < 2e-16 ***
ORIGIN_ID112   4.4428589  0.1280551    34.695  < 2e-16 ***
ORIGIN_ID113  -0.4412492  0.1929527    -2.287 0.022206 *  
ORIGIN_ID125   5.2206763  0.1281277    40.746  < 2e-16 ***
ORIGIN_ID126   2.6122236  0.1304828    20.020  < 2e-16 ***
ORIGIN_ID135   2.8637818  0.1546824    18.514  < 2e-16 ***
ORIGIN_ID136   5.0546094  0.1281734    39.436  < 2e-16 ***
ORIGIN_ID137   2.8715329  0.1304580    22.011  < 2e-16 ***
ORIGIN_ID138   0.0109105  0.2747489     0.040 0.968324    
ORIGIN_ID148   0.6996267  0.1545979     4.525 6.03e-06 ***
ORIGIN_ID149   3.3234524  0.1317521    25.225  < 2e-16 ***
ORIGIN_ID150   0.9782869  0.1757429     5.567 2.60e-08 ***
ORIGIN_ID159   2.1989750  0.1323623    16.613  < 2e-16 ***
ORIGIN_ID160   3.8765291  0.1286527    30.132  < 2e-16 ***
ORIGIN_ID161   1.7028571  0.1395569    12.202  < 2e-16 ***
ORIGIN_ID171  -0.2324751  0.1854570    -1.254 0.210014    
ORIGIN_ID172   1.2097816  0.1371811     8.819  < 2e-16 ***
ORIGIN_ID173   1.9405272  0.1373278    14.131  < 2e-16 ***
ORIGIN_ID185   0.5499105  0.1349207     4.076 4.59e-05 ***
ORIGIN_ID186   3.8894294  0.1284712    30.275  < 2e-16 ***
ORIGIN_ID201   1.6937643  0.1315588    12.875  < 2e-16 ***
ORIGIN_ID202   2.0878925  0.1377334    15.159  < 2e-16 ***
ORIGIN_ID203   2.6201675  0.1323568    19.796  < 2e-16 ***
ORIGIN_ID217   0.4489783  0.1393990     3.221 0.001278 ** 
ORIGIN_ID218  -1.7224294  0.1818837    -9.470  < 2e-16 ***
ORIGIN_ID219   1.7522158  0.1331679    13.158  < 2e-16 ***
ORIGIN_ID220   1.7704604  0.1343354    13.179  < 2e-16 ***
ORIGIN_ID234   1.5932318  0.1316032    12.106  < 2e-16 ***
ORIGIN_ID235   1.8369437  0.1317130    13.947  < 2e-16 ***
ORIGIN_ID251   1.3249829  0.1351219     9.806  < 2e-16 ***
ORIGIN_ID252   1.1862293  0.1344896     8.820  < 2e-16 ***
ORIGIN_ID253   6.5555595  0.1280104    51.211  < 2e-16 ***
ORIGIN_ID254   2.0880496  0.1388117    15.042  < 2e-16 ***
ORIGIN_ID255   0.2065215  0.2963460     0.697 0.485870    
ORIGIN_ID268   2.6154915  0.1328266    19.691  < 2e-16 ***
ORIGIN_ID269   0.1674977  0.1422418     1.178 0.238973    
ORIGIN_ID270   2.8380129  0.1287371    22.045  < 2e-16 ***
ORIGIN_ID272   2.8003312  0.1300062    21.540  < 2e-16 ***
ORIGIN_ID285   2.0356680  0.1409043    14.447  < 2e-16 ***
ORIGIN_ID286   2.3441864  0.1331497    17.606  < 2e-16 ***
ORIGIN_ID287   2.3942870  0.1302332    18.385  < 2e-16 ***
ORIGIN_ID288   2.5314943  0.1359554    18.620  < 2e-16 ***
ORIGIN_ID289   3.4278848  0.1286915    26.636  < 2e-16 ***
ORIGIN_ID303   0.6422557  0.1342221     4.785 1.71e-06 ***
ORIGIN_ID304   2.3259138  0.1318773    17.637  < 2e-16 ***
ORIGIN_ID306   3.4584193  0.1286495    26.883  < 2e-16 ***
ORIGIN_ID307   2.7411887  0.1304653    21.011  < 2e-16 ***
ORIGIN_ID320   0.7122570  0.1395630     5.103 3.33e-07 ***
ORIGIN_ID321   2.0237080  0.1330878    15.206  < 2e-16 ***
ORIGIN_ID322   3.4428281  0.1291415    26.659  < 2e-16 ***
ORIGIN_ID323   6.6821682  0.1280695    52.176  < 2e-16 ***
ORIGIN_ID324   3.2413176  0.1292918    25.070  < 2e-16 ***
ORIGIN_ID325  -0.6491449  0.2882385    -2.252 0.024315 *  
ORIGIN_ID338   2.1830114  0.1303184    16.751  < 2e-16 ***
ORIGIN_ID339   2.9881633  0.1304718    22.903  < 2e-16 ***
ORIGIN_ID340   5.0076999  0.1281471    39.078  < 2e-16 ***
ORIGIN_ID341   5.9967322  0.1280759    46.822  < 2e-16 ***
ORIGIN_ID342   2.9653905  0.1303226    22.754  < 2e-16 ***
ORIGIN_ID343   1.7245546  0.1413547    12.200  < 2e-16 ***
ORIGIN_ID353   0.6043283  0.1443475     4.187 2.83e-05 ***
ORIGIN_ID354   2.1608423  0.1304148    16.569  < 2e-16 ***
ORIGIN_ID355   3.5992276  0.1285023    28.009  < 2e-16 ***
ORIGIN_ID356   5.7489569  0.1280635    44.891  < 2e-16 ***
ORIGIN_ID357   4.8272912  0.1283661    37.606  < 2e-16 ***
ORIGIN_ID358   2.3039533  0.1339806    17.196  < 2e-16 ***
ORIGIN_ID359   3.6665104  0.1305868    28.077  < 2e-16 ***
ORIGIN_ID360   1.3955478  0.2411633     5.787 7.18e-09 ***
ORIGIN_ID361   1.3491786  0.2447336     5.513 3.53e-08 ***
ORIGIN_ID370   0.9887701  0.1328987     7.440 1.01e-13 ***
ORIGIN_ID371   0.2848797  0.1675025     1.701 0.088990 .  
ORIGIN_ID372   5.5371417  0.1280745    43.234  < 2e-16 ***
ORIGIN_ID373   6.3349643  0.1280518    49.472  < 2e-16 ***
ORIGIN_ID375   0.8575019  0.1541474     5.563 2.65e-08 ***
ORIGIN_ID376   1.2238138  0.1836237     6.665 2.65e-11 ***
ORIGIN_ID378   1.6928723  0.1613629    10.491  < 2e-16 ***
ORIGIN_ID379   4.2221508  0.1354364    31.174  < 2e-16 ***
ORIGIN_ID386   1.0313705  0.1398459     7.375 1.64e-13 ***
ORIGIN_ID387   0.4664479  0.1383762     3.371 0.000749 ***
ORIGIN_ID388   3.4666421  0.1297323    26.722  < 2e-16 ***
ORIGIN_ID389   7.0239529  0.1280311    54.861  < 2e-16 ***
ORIGIN_ID390   6.2136897  0.1280786    48.515  < 2e-16 ***
ORIGIN_ID395   1.0328897  1.0092942     1.023 0.306129    
ORIGIN_ID396   0.6534308  0.1815466     3.599 0.000319 ***
ORIGIN_ID406  -0.8184626  0.1613247    -5.073 3.91e-07 ***
ORIGIN_ID407   2.3395466  0.1298897    18.012  < 2e-16 ***
ORIGIN_ID408   3.6413219  0.1283301    28.375  < 2e-16 ***
ORIGIN_ID409   5.2626294  0.1281015    41.082  < 2e-16 ***
ORIGIN_ID411  -0.0176456  0.2409849    -0.073 0.941629    
ORIGIN_ID416   1.5132277  0.1686702     8.972  < 2e-16 ***
ORIGIN_ID417   3.4777790  0.1631016    21.323  < 2e-16 ***
ORIGIN_ID424   1.2271042  0.1336605     9.181  < 2e-16 ***
ORIGIN_ID425   2.1941225  0.1304734    16.817  < 2e-16 ***
ORIGIN_ID426   4.2710628  0.1281745    33.322  < 2e-16 ***
ORIGIN_ID427   4.2201444  0.1285015    32.841  < 2e-16 ***
ORIGIN_ID434   2.3983105  0.2255771    10.632  < 2e-16 ***
ORIGIN_ID435   4.3266492  0.1411849    30.645  < 2e-16 ***
ORIGIN_ID441   1.6038624  0.1357822    11.812  < 2e-16 ***
ORIGIN_ID442  -0.2806378  0.1803472    -1.556 0.119685    
ORIGIN_ID443   2.2996989  0.1304559    17.628  < 2e-16 ***
ORIGIN_ID444   6.1042567  0.1280603    47.667  < 2e-16 ***
ORIGIN_ID446   2.0089379  0.1439597    13.955  < 2e-16 ***
ORIGIN_ID462   3.1156407  0.1292070    24.114  < 2e-16 ***
ORIGIN_ID463   3.3762083  0.1288793    26.197  < 2e-16 ***
ORIGIN_ID464   4.7653702  0.1281593    37.183  < 2e-16 ***
ORIGIN_ID465   5.7197903  0.1280828    44.657  < 2e-16 ***
ORIGIN_ID467   6.2751390  0.1282347    48.935  < 2e-16 ***
ORIGIN_ID480   3.9615659  0.1289133    30.730  < 2e-16 ***
ORIGIN_ID481   4.7227707  0.1282035    36.838  < 2e-16 ***
ORIGIN_ID482   5.7454750  0.1280875    44.856  < 2e-16 ***
ORIGIN_ID483   6.3493082  0.1280680    49.578  < 2e-16 ***
ORIGIN_ID501   0.1196746  0.1562156     0.766 0.443625    
ORIGIN_ID502   5.9084410  0.1280854    46.129  < 2e-16 ***
ORIGIN_ID503   4.7522606  0.1281918    37.071  < 2e-16 ***
ORIGIN_ID504   6.0479810  0.1280667    47.225  < 2e-16 ***
ORIGIN_ID506   3.0288104  0.1319458    22.955  < 2e-16 ***
ORIGIN_ID521   0.1123718  0.1651571     0.680 0.496255    
ORIGIN_ID522   4.1110347  0.1284682    32.000  < 2e-16 ***
ORIGIN_ID523   4.8778181  0.1282413    38.036  < 2e-16 ***
ORIGIN_ID524   4.9082158  0.1281244    38.308  < 2e-16 ***
ORIGIN_ID543   4.7279729  0.1282899    36.854  < 2e-16 ***
ORIGIN_ID544   5.4332898  0.1281136    42.410  < 2e-16 ***
ORIGIN_ID546   2.5124206  0.1342494    18.715  < 2e-16 ***
ORIGIN_ID558   3.7064485  0.1288732    28.760  < 2e-16 ***
ORIGIN_ID559   2.9212687  0.1307316    22.346  < 2e-16 ***
ORIGIN_ID560   2.5626560  0.1294994    19.789  < 2e-16 ***
ORIGIN_ID561   5.7317146  0.1280775    44.752  < 2e-16 ***
ORIGIN_ID569   2.2051373  0.1480938    14.890  < 2e-16 ***
ORIGIN_ID575   1.7440554  0.1352918    12.891  < 2e-16 ***
ORIGIN_ID576   4.8443874  0.1282029    37.787  < 2e-16 ***
ORIGIN_ID577   1.9376780  0.1309511    14.797  < 2e-16 ***
ORIGIN_ID578   5.3557018  0.1280941    41.811  < 2e-16 ***
ORIGIN_ID579   5.5855703  0.1281337    43.592  < 2e-16 ***
ORIGIN_ID581   7.3627603  0.1280704    57.490  < 2e-16 ***
ORIGIN_ID582   3.4231520  0.1345450    25.442  < 2e-16 ***
ORIGIN_ID594   5.7773052  0.1281017    45.099  < 2e-16 ***
ORIGIN_ID595   6.1482984  0.1280591    48.011  < 2e-16 ***
ORIGIN_ID596   5.3837474  0.1281133    42.023  < 2e-16 ***
ORIGIN_ID597   6.0598614  0.1281040    47.304  < 2e-16 ***
ORIGIN_ID598   5.1711094  0.1287035    40.178  < 2e-16 ***
ORIGIN_ID599   6.2941314  0.1280894    49.139  < 2e-16 ***
ORIGIN_ID600   6.2202588  0.1281598    48.535  < 2e-16 ***
ORIGIN_ID604   0.5040867  0.2747084     1.835 0.066507 .  
ORIGIN_ID609   0.3919502  0.1507809     2.599 0.009337 ** 
ORIGIN_ID610   4.1436566  0.1283338    32.288  < 2e-16 ***
ORIGIN_ID611   3.3405075  0.1286199    25.972  < 2e-16 ***
ORIGIN_ID612   6.0303521  0.1280641    47.089  < 2e-16 ***
ORIGIN_ID613   5.7315108  0.1280825    44.749  < 2e-16 ***
ORIGIN_ID614   5.7795674  0.1281079    45.115  < 2e-16 ***
ORIGIN_ID615   7.1595672  0.1280968    55.892  < 2e-16 ***
ORIGIN_ID616   6.8100603  0.1280661    53.176  < 2e-16 ***
ORIGIN_ID617   2.9304394  0.1312937    22.320  < 2e-16 ***
ORIGIN_ID620   4.3753159  0.1290075    33.915  < 2e-16 ***
ORIGIN_ID624   2.2225798  0.1333712    16.665  < 2e-16 ***
ORIGIN_ID625   2.7213255  0.1318753    20.636  < 2e-16 ***
ORIGIN_ID626   4.7597907  0.1281599    37.139  < 2e-16 ***
ORIGIN_ID627   3.5524848  0.1283752    27.673  < 2e-16 ***
ORIGIN_ID628   5.5472070  0.1280933    43.306  < 2e-16 ***
ORIGIN_ID629   5.0991090  0.1281455    39.792  < 2e-16 ***
ORIGIN_ID630   4.7271598  0.1282498    36.859  < 2e-16 ***
ORIGIN_ID631   5.9864923  0.1280910    46.736  < 2e-16 ***
ORIGIN_ID632   6.0942519  0.1281307    47.563  < 2e-16 ***
ORIGIN_ID633   6.6021958  0.1281706    51.511  < 2e-16 ***
ORIGIN_ID635   3.2011573  0.1306767    24.497  < 2e-16 ***
ORIGIN_ID641   2.3799532  0.1322063    18.002  < 2e-16 ***
ORIGIN_ID642   4.5777377  0.1282336    35.698  < 2e-16 ***
ORIGIN_ID643   3.4322446  0.1288368    26.640  < 2e-16 ***
ORIGIN_ID645   6.2137300  0.1280617    48.521  < 2e-16 ***
ORIGIN_ID646   5.5194676  0.1281319    43.076  < 2e-16 ***
ORIGIN_ID647   5.2783048  0.1281427    41.191  < 2e-16 ***
ORIGIN_ID649   6.4188026  0.1281820    50.076  < 2e-16 ***
ORIGIN_ID650   2.9986816  0.1309794    22.894  < 2e-16 ***
ORIGIN_ID651   2.7698805  0.1313701    21.085  < 2e-16 ***
ORIGIN_ID652   2.4068791  0.1335172    18.027  < 2e-16 ***
ORIGIN_ID658   1.7400884  0.1357189    12.821  < 2e-16 ***
ORIGIN_ID659   2.6813300  0.1291077    20.768  < 2e-16 ***
ORIGIN_ID660   4.5279790  0.1282013    35.319  < 2e-16 ***
ORIGIN_ID661   5.6013940  0.1281694    43.703  < 2e-16 ***
ORIGIN_ID662   5.9741410  0.1280699    46.647  < 2e-16 ***
ORIGIN_ID663   5.9106287  0.1281671    46.117  < 2e-16 ***
ORIGIN_ID665   6.1266472  0.1281139    47.822  < 2e-16 ***
ORIGIN_ID666   4.4628769  0.1283068    34.783  < 2e-16 ***
ORIGIN_ID667   5.1818123  0.1282437    40.406  < 2e-16 ***
ORIGIN_ID668   2.2706645  0.1318431    17.222  < 2e-16 ***
ORIGIN_ID669   0.7268021  0.1501312     4.841 1.29e-06 ***
ORIGIN_ID670   0.9852030  0.1803576     5.462 4.69e-08 ***
ORIGIN_ID676   4.4495408  0.1286803    34.578  < 2e-16 ***
ORIGIN_ID677   3.6825895  0.1283886    28.683  < 2e-16 ***
ORIGIN_ID678   2.7117191  0.1290478    21.013  < 2e-16 ***
ORIGIN_ID679   4.7950294  0.1282257    37.395  < 2e-16 ***
ORIGIN_ID680   5.5931571  0.1280960    43.664  < 2e-16 ***
ORIGIN_ID682   5.6657003  0.1281008    44.228  < 2e-16 ***
ORIGIN_ID683   5.8853403  0.1281034    45.942  < 2e-16 ***
ORIGIN_ID684   3.1604082  0.1294565    24.413  < 2e-16 ***
ORIGIN_ID685   3.8956772  0.1287093    30.267  < 2e-16 ***
ORIGIN_ID686   1.6695617  0.1325404    12.597  < 2e-16 ***
ORIGIN_ID687   3.3375525  0.1300578    25.662  < 2e-16 ***
ORIGIN_ID696   4.3532559  0.1285618    33.861  < 2e-16 ***
ORIGIN_ID697   4.9200083  0.1281090    38.405  < 2e-16 ***
ORIGIN_ID698   4.5722375  0.1281637    35.675  < 2e-16 ***
ORIGIN_ID699   3.2428314  0.1286613    25.204  < 2e-16 ***
ORIGIN_ID700   5.0743448  0.1281302    39.603  < 2e-16 ***
ORIGIN_ID701   5.1637943  0.1281852    40.284  < 2e-16 ***
ORIGIN_ID702   2.4755579  0.1297650    19.077  < 2e-16 ***
ORIGIN_ID703   5.8739620  0.1280827    45.861  < 2e-16 ***
ORIGIN_ID707   0.6699077  0.1457127     4.597 4.28e-06 ***
ORIGIN_ID716   3.2431984  0.1287931    25.181  < 2e-16 ***
ORIGIN_ID717   5.6642816  0.1280877    44.222  < 2e-16 ***
ORIGIN_ID718   6.7017001  0.1280475    52.338  < 2e-16 ***
ORIGIN_ID719   3.1314564  0.1295755    24.167  < 2e-16 ***
ORIGIN_ID720   3.3962400  0.1287239    26.384  < 2e-16 ***
ORIGIN_ID722   4.5292191  0.1283034    35.301  < 2e-16 ***
ORIGIN_ID723   6.2570859  0.1280701    48.857  < 2e-16 ***
ORIGIN_ID724   5.1856321  0.1283122    40.414  < 2e-16 ***
ORIGIN_ID726   2.2232834  0.1363423    16.307  < 2e-16 ***
ORIGIN_ID727   6.8836251  0.1280887    53.741  < 2e-16 ***
ORIGIN_ID728   5.0755771  0.1283845    39.534  < 2e-16 ***
ORIGIN_ID735   0.3373286  0.2034823     1.658 0.097362 .  
ORIGIN_ID736   4.1670975  0.1282320    32.497  < 2e-16 ***
ORIGIN_ID737   5.4371591  0.1280690    42.455  < 2e-16 ***
ORIGIN_ID738   4.7606059  0.1281912    37.137  < 2e-16 ***
ORIGIN_ID739   2.9218062  0.1299953    22.476  < 2e-16 ***
ORIGIN_ID740   3.4727915  0.1287253    26.978  < 2e-16 ***
ORIGIN_ID741   4.9799140  0.1281698    38.854  < 2e-16 ***
ORIGIN_ID742   3.6082546  0.1285450    28.070  < 2e-16 ***
ORIGIN_ID743   5.8640253  0.1281025    45.776  < 2e-16 ***
ORIGIN_ID747   1.7968087  0.1315237    13.661  < 2e-16 ***
ORIGIN_ID748   6.5543269  0.1280846    51.172  < 2e-16 ***
ORIGIN_ID757   3.6851925  0.1283153    28.720  < 2e-16 ***
ORIGIN_ID758   4.4449632  0.1281716    34.680  < 2e-16 ***
ORIGIN_ID759   4.7780643  0.1281305    37.291  < 2e-16 ***
ORIGIN_ID761   5.0216790  0.1281357    39.190  < 2e-16 ***
ORIGIN_ID762   3.2076987  0.1290357    24.859  < 2e-16 ***
ORIGIN_ID763   4.0955735  0.1285625    31.857  < 2e-16 ***
ORIGIN_ID764   6.3214943  0.1280754    49.358  < 2e-16 ***
ORIGIN_ID765   7.1694854  0.1280991    55.968  < 2e-16 ***
ORIGIN_ID767  -0.1711090  0.2102742    -0.814 0.415793    
ORIGIN_ID769   4.5559404  0.1282306    35.529  < 2e-16 ***
ORIGIN_ID770   7.0979714  0.1280794    55.419  < 2e-16 ***
ORIGIN_ID775   3.8386136  0.1283251    29.913  < 2e-16 ***
ORIGIN_ID776   2.3629031  0.1303658    18.125  < 2e-16 ***
ORIGIN_ID777   3.1697166  0.1285092    24.665  < 2e-16 ***
ORIGIN_ID778   4.1562375  0.1282289    32.413  < 2e-16 ***
ORIGIN_ID780   4.4222334  0.1282728    34.475  < 2e-16 ***
ORIGIN_ID782   5.4028612  0.1282411    42.130  < 2e-16 ***
ORIGIN_ID783   5.5661364  0.1282487    43.401  < 2e-16 ***
ORIGIN_ID787   6.0070277  0.1280962    46.895  < 2e-16 ***
ORIGIN_ID788   5.9220380  0.1280965    46.231  < 2e-16 ***
ORIGIN_ID795  -0.6453664  0.2230471    -2.893 0.003811 ** 
ORIGIN_ID796   2.3899150  0.1299310    18.394  < 2e-16 ***
ORIGIN_ID797   3.8506346  0.1285638    29.951  < 2e-16 ***
ORIGIN_ID798   3.7479748  0.1284713    29.174  < 2e-16 ***
ORIGIN_ID799   5.4495672  0.1281038    42.540  < 2e-16 ***
ORIGIN_ID801   2.7618041  0.1318585    20.945  < 2e-16 ***
ORIGIN_ID802   7.6633849  0.1281322    59.808  < 2e-16 ***
ORIGIN_ID805   3.9136175  0.1293785    30.249  < 2e-16 ***
ORIGIN_ID807   5.2040113  0.1281314    40.615  < 2e-16 ***
ORIGIN_ID808   5.2319593  0.1281778    40.818  < 2e-16 ***
ORIGIN_ID813   2.6119946  0.1288357    20.274  < 2e-16 ***
ORIGIN_ID814   1.6731760  0.1307160    12.800  < 2e-16 ***
ORIGIN_ID815   4.8757653  0.1281488    38.048  < 2e-16 ***
ORIGIN_ID816   3.3008911  0.1285765    25.673  < 2e-16 ***
ORIGIN_ID817   4.8656458  0.1281249    37.976  < 2e-16 ***
ORIGIN_ID825   4.7675040  0.1282725    37.167  < 2e-16 ***
ORIGIN_ID826   5.3733396  0.1281216    41.939  < 2e-16 ***
ORIGIN_ID827   1.3445835  0.1374020     9.786  < 2e-16 ***
ORIGIN_ID831   5.0134150  0.1281256    39.129  < 2e-16 ***
ORIGIN_ID832   4.2778733  0.1281714    33.376  < 2e-16 ***
ORIGIN_ID833   5.2640862  0.1280927    41.096  < 2e-16 ***
ORIGIN_ID834   3.5700747  0.1285115    27.780  < 2e-16 ***
ORIGIN_ID842  -0.8064002  0.1888515    -4.270 1.95e-05 ***
ORIGIN_ID844   5.2305206  0.1281162    40.826  < 2e-16 ***
ORIGIN_ID845   4.9879816  0.1282027    38.907  < 2e-16 ***
ORIGIN_ID850   2.9577468  0.1288168    22.961  < 2e-16 ***
ORIGIN_ID851   0.9919902  0.1371066     7.235 4.65e-13 ***
ORIGIN_ID852   3.4538133  0.1282944    26.921  < 2e-16 ***
ORIGIN_ID853   4.7098731  0.1281477    36.753  < 2e-16 ***
ORIGIN_ID854   2.4188013  0.1304063    18.548  < 2e-16 ***
ORIGIN_ID855   4.4763627  0.1282149    34.913  < 2e-16 ***
ORIGIN_ID861   2.2496592  0.1427348    15.761  < 2e-16 ***
ORIGIN_ID863   4.8178695  0.1282528    37.565  < 2e-16 ***
ORIGIN_ID864   6.9678531  0.1280605    54.411  < 2e-16 ***
ORIGIN_ID865   4.1734442  0.1284528    32.490  < 2e-16 ***
ORIGIN_ID869   1.0046205  0.1360440     7.385 1.53e-13 ***
ORIGIN_ID870   1.9367953  0.1331383    14.547  < 2e-16 ***
ORIGIN_ID871   5.3029464  0.1280804    41.403  < 2e-16 ***
ORIGIN_ID872   2.9691170  0.1289328    23.028  < 2e-16 ***
ORIGIN_ID873   1.5287537  0.1377476    11.098  < 2e-16 ***
ORIGIN_ID880   0.0027962  0.1611372     0.017 0.986155    
ORIGIN_ID882   5.6248238  0.1281060    43.908  < 2e-16 ***
ORIGIN_ID883   4.9021457  0.1281905    38.241  < 2e-16 ***
ORIGIN_ID887   3.8254245  0.1283541    29.804  < 2e-16 ***
ORIGIN_ID888   2.0557532  0.1296551    15.856  < 2e-16 ***
ORIGIN_ID889   2.0760221  0.1299847    15.971  < 2e-16 ***
ORIGIN_ID890   4.4092497  0.1281540    34.406  < 2e-16 ***
ORIGIN_ID891   3.4132091  0.1287926    26.502  < 2e-16 ***
ORIGIN_ID892   3.2947697  0.1286973    25.601  < 2e-16 ***
ORIGIN_ID899   2.9221878  0.1413972    20.667  < 2e-16 ***
ORIGIN_ID900   5.1744213  0.1282650    40.342  < 2e-16 ***
ORIGIN_ID901   6.0062476  0.1280787    46.895  < 2e-16 ***
ORIGIN_ID902   4.6245162  0.1284074    36.014  < 2e-16 ***
ORIGIN_ID905   2.7568240  0.1308804    21.064  < 2e-16 ***
ORIGIN_ID907   2.9845436  0.1284864    23.228  < 2e-16 ***
ORIGIN_ID908   5.5185801  0.1280821    43.086  < 2e-16 ***
ORIGIN_ID910   4.5769572  0.1281856    35.706  < 2e-16 ***
ORIGIN_ID917   0.8466851  0.1645723     5.145 2.68e-07 ***
ORIGIN_ID919   6.1511097  0.1280893    48.022  < 2e-16 ***
ORIGIN_ID920   5.8408538  0.1280946    45.598  < 2e-16 ***
ORIGIN_ID921   2.0394926  0.1312150    15.543  < 2e-16 ***
ORIGIN_ID925   3.2228156  0.1284379    25.092  < 2e-16 ***
ORIGIN_ID926   4.6071157  0.1281187    35.960  < 2e-16 ***
ORIGIN_ID927   4.2888803  0.1281615    33.465  < 2e-16 ***
ORIGIN_ID928   3.4804204  0.1283636    27.114  < 2e-16 ***
ORIGIN_ID937   2.3052575  0.1366949    16.864  < 2e-16 ***
ORIGIN_ID938   4.7181302  0.1284106    36.743  < 2e-16 ***
ORIGIN_ID939   6.3407977  0.1280851    49.505  < 2e-16 ***
ORIGIN_ID940   4.7573938  0.1282113    37.106  < 2e-16 ***
ORIGIN_ID941   2.2914895  0.1310065    17.491  < 2e-16 ***
ORIGIN_ID944   2.5125463  0.1288465    19.500  < 2e-16 ***
ORIGIN_ID945   3.4402606  0.1282843    26.817  < 2e-16 ***
ORIGIN_ID946   4.8149494  0.1281181    37.582  < 2e-16 ***
ORIGIN_ID947   3.5576291  0.1283664    27.715  < 2e-16 ***
ORIGIN_ID948   4.9631474  0.1281440    38.731  < 2e-16 ***
ORIGIN_ID949   3.1493296  0.1288342    24.445  < 2e-16 ***
ORIGIN_ID956   2.2030632  0.1648577    13.363  < 2e-16 ***
ORIGIN_ID958   5.0939472  0.1282007    39.734  < 2e-16 ***
ORIGIN_ID959   5.6612232  0.1281041    44.192  < 2e-16 ***
ORIGIN_ID960   3.7672841  0.1286000    29.295  < 2e-16 ***
ORIGIN_ID961  -1.6577263  0.4652502    -3.563 0.000367 ***
ORIGIN_ID964   4.8726399  0.1281512    38.023  < 2e-16 ***
ORIGIN_ID965   4.7008453  0.1281118    36.693  < 2e-16 ***
ORIGIN_ID966   3.7648114  0.1286572    29.262  < 2e-16 ***
ORIGIN_ID967   3.2729532  0.1285565    25.459  < 2e-16 ***
ORIGIN_ID968   4.6099119  0.1281695    35.967  < 2e-16 ***
ORIGIN_ID975  -0.1634323  0.2283876    -0.716 0.474243    
ORIGIN_ID976   1.9267883  0.1574857    12.235  < 2e-16 ***
ORIGIN_ID978   4.7558372  0.1283574    37.052  < 2e-16 ***
ORIGIN_ID979   4.4423723  0.1287960    34.492  < 2e-16 ***
ORIGIN_ID980   3.7553516  0.1286644    29.187  < 2e-16 ***
ORIGIN_ID982   5.1287791  0.1280995    40.037  < 2e-16 ***
ORIGIN_ID983   3.8755580  0.1282074    30.229  < 2e-16 ***
ORIGIN_ID984   4.5994569  0.1281226    35.899  < 2e-16 ***
ORIGIN_ID985   2.1742162  0.1297079    16.762  < 2e-16 ***
ORIGIN_ID986   2.3165718  0.1293859    17.904  < 2e-16 ***
ORIGIN_ID987   2.6856534  0.1365986    19.661  < 2e-16 ***
ORIGIN_ID993  -0.4043069  0.2577244    -1.569 0.116705    
ORIGIN_ID997   4.8165758  0.1281849    37.575  < 2e-16 ***
ORIGIN_ID998   0.9658334  0.1409259     6.853 7.21e-12 ***
ORIGIN_ID999   2.5083910  0.1323976    18.946  < 2e-16 ***
ORIGIN_ID1002  3.8403439  0.1282416    29.946  < 2e-16 ***
ORIGIN_ID1003  5.0896030  0.1280822    39.737  < 2e-16 ***
ORIGIN_ID1004  2.5157796  0.1293597    19.448  < 2e-16 ***
ORIGIN_ID1006  4.3504253  0.1282013    33.934  < 2e-16 ***
ORIGIN_ID1013  2.4597575  0.1362515    18.053  < 2e-16 ***
ORIGIN_ID1016  2.5014961  0.1314908    19.024  < 2e-16 ***
ORIGIN_ID1017  6.0210491  0.1281116    46.998  < 2e-16 ***
ORIGIN_ID1018  3.3557092  0.1287643    26.061  < 2e-16 ***
ORIGIN_ID1021  3.4012352  0.1283213    26.506  < 2e-16 ***
ORIGIN_ID1022  4.4819299  0.1281166    34.983  < 2e-16 ***
ORIGIN_ID1023  3.2724737  0.1283912    25.488  < 2e-16 ***
ORIGIN_ID1024  3.6987473  0.1283489    28.818  < 2e-16 ***
ORIGIN_ID1026  2.1441323  0.1324273    16.191  < 2e-16 ***
ORIGIN_ID1027  0.8389692  0.1868582     4.490 7.13e-06 ***
ORIGIN_ID1031 -0.4381534  0.2182905    -2.007 0.044728 *  
ORIGIN_ID1032  5.7559437  0.1281753    44.907  < 2e-16 ***
ORIGIN_ID1036  6.1577774  0.1280941    48.072  < 2e-16 ***
ORIGIN_ID1037  4.8250823  0.1282032    37.636  < 2e-16 ***
ORIGIN_ID1040  5.4812006  0.1280936    42.791  < 2e-16 ***
ORIGIN_ID1041  5.1383909  0.1280955    40.114  < 2e-16 ***
ORIGIN_ID1042  4.7204649  0.1280989    36.850  < 2e-16 ***
ORIGIN_ID1043  1.3649682  0.1318225    10.355  < 2e-16 ***
ORIGIN_ID1045  2.8652196  0.1289763    22.215  < 2e-16 ***
ORIGIN_ID1046  1.6321610  0.1366922    11.940  < 2e-16 ***
ORIGIN_ID1051 -0.0161975  0.1782878    -0.091 0.927612    
ORIGIN_ID1052  4.4229263  0.1285101    34.417  < 2e-16 ***
ORIGIN_ID1053  2.0262853  0.1325103    15.292  < 2e-16 ***
ORIGIN_ID1055  3.6470881  0.1289279    28.288  < 2e-16 ***
ORIGIN_ID1056  5.8912762  0.1281114    45.986  < 2e-16 ***
ORIGIN_ID1060  4.4935278  0.1281389    35.068  < 2e-16 ***
ORIGIN_ID1061  5.2153431  0.1280756    40.721  < 2e-16 ***
ORIGIN_ID1062  4.0763736  0.1281753    31.803  < 2e-16 ***
ORIGIN_ID1063  3.1860964  0.1284126    24.811  < 2e-16 ***
ORIGIN_ID1064  3.9021138  0.1283478    30.403  < 2e-16 ***
ORIGIN_ID1066 -0.2574726  0.2019577    -1.275 0.202350    
ORIGIN_ID1068  2.3256934  0.1328115    17.511  < 2e-16 ***
ORIGIN_ID1070  0.9654213  0.1420772     6.795 1.08e-11 ***
ORIGIN_ID1072  0.1411655  0.1734898     0.814 0.415827    
ORIGIN_ID1073  3.8623956  0.1285232    30.052  < 2e-16 ***
ORIGIN_ID1074  4.9996300  0.1281829    39.004  < 2e-16 ***
ORIGIN_ID1075  5.1511723  0.1281531    40.195  < 2e-16 ***
ORIGIN_ID1076  2.7030537  0.1319176    20.490  < 2e-16 ***
ORIGIN_ID1081  4.6650016  0.1281141    36.413  < 2e-16 ***
ORIGIN_ID1082  5.4302678  0.1280706    42.401  < 2e-16 ***
ORIGIN_ID1083  3.2430228  0.1283666    25.264  < 2e-16 ***
ORIGIN_ID1084  3.1506713  0.1285699    24.506  < 2e-16 ***
ORIGIN_ID1085  4.5414301  0.1281565    35.437  < 2e-16 ***
ORIGIN_ID1088  4.6371318  0.1282167    36.166  < 2e-16 ***
ORIGIN_ID1089  4.3088117  0.1283576    33.569  < 2e-16 ***
ORIGIN_ID1090  4.2322403  0.1284934    32.937  < 2e-16 ***
ORIGIN_ID1092  3.4241646  0.1292533    26.492  < 2e-16 ***
ORIGIN_ID1094  5.9632903  0.1280875    46.556  < 2e-16 ***
ORIGIN_ID1095  5.0164183  0.1282167    39.125  < 2e-16 ***
ORIGIN_ID1096  5.5607903  0.1281706    43.386  < 2e-16 ***
ORIGIN_ID1102  0.6199621  0.1375975     4.506 6.62e-06 ***
ORIGIN_ID1103  4.0065052  0.1283591    31.213  < 2e-16 ***
ORIGIN_ID1104  4.0546726  0.1281621    31.637  < 2e-16 ***
ORIGIN_ID1105  4.8689309  0.1280959    38.010  < 2e-16 ***
ORIGIN_ID1106  3.8116439  0.1283827    29.690  < 2e-16 ***
ORIGIN_ID1108  1.1322972  0.1364432     8.299  < 2e-16 ***
ORIGIN_ID1109  4.3498758  0.1282657    33.913  < 2e-16 ***
ORIGIN_ID1110  3.9277728  0.1283922    30.592  < 2e-16 ***
ORIGIN_ID1111  3.6728364  0.1285196    28.578  < 2e-16 ***
ORIGIN_ID1112  2.3351347  0.1416568    16.484  < 2e-16 ***
ORIGIN_ID1113  0.5835585  0.1724230     3.384 0.000713 ***
ORIGIN_ID1114  4.3536600  0.1282915    33.936  < 2e-16 ***
ORIGIN_ID1115  4.7828212  0.1281749    37.315  < 2e-16 ***
ORIGIN_ID1116  5.4204195  0.1281198    42.307  < 2e-16 ***
ORIGIN_ID1117  6.5738448  0.1281172    51.311  < 2e-16 ***
ORIGIN_ID1118  2.4858657  0.1343924    18.497  < 2e-16 ***
ORIGIN_ID1125  4.2632580  0.1281497    33.268  < 2e-16 ***
ORIGIN_ID1126  4.3273069  0.1281268    33.774  < 2e-16 ***
ORIGIN_ID1127  1.9106261  0.1294569    14.759  < 2e-16 ***
ORIGIN_ID1128  4.0049891  0.1282029    31.239  < 2e-16 ***
ORIGIN_ID1129  3.0795472  0.1286601    23.936  < 2e-16 ***
ORIGIN_ID1130  2.6074591  0.1289423    20.222  < 2e-16 ***
ORIGIN_ID1133  5.1572528  0.1281334    40.249  < 2e-16 ***
ORIGIN_ID1134  4.7513664  0.1282109    37.059  < 2e-16 ***
ORIGIN_ID1135  3.8853348  0.1288176    30.162  < 2e-16 ***
ORIGIN_ID1137  6.7099699  0.1280701    52.393  < 2e-16 ***
ORIGIN_ID1138  6.5534990  0.1280693    51.171  < 2e-16 ***
ORIGIN_ID1139  4.8809301  0.1282311    38.064  < 2e-16 ***
ORIGIN_ID1140  2.5816392  0.1398383    18.462  < 2e-16 ***
ORIGIN_ID1141  3.6474526  0.1346099    27.096  < 2e-16 ***
ORIGIN_ID1146  2.9590697  0.1288258    22.970  < 2e-16 ***
ORIGIN_ID1147  4.4443814  0.1281156    34.690  < 2e-16 ***
ORIGIN_ID1148  3.8228895  0.1282512    29.808  < 2e-16 ***
ORIGIN_ID1149  3.3192769  0.1288609    25.759  < 2e-16 ***
ORIGIN_ID1150  3.4229858  0.1283978    26.659  < 2e-16 ***
ORIGIN_ID1151  3.4983995  0.1283018    27.267  < 2e-16 ***
ORIGIN_ID1152  3.8432250  0.1282472    29.967  < 2e-16 ***
ORIGIN_ID1153  4.6023540  0.1281568    35.912  < 2e-16 ***
ORIGIN_ID1154  4.3425588  0.1282825    33.852  < 2e-16 ***
ORIGIN_ID1155  5.5255056  0.1281132    43.130  < 2e-16 ***
ORIGIN_ID1156  4.2963870  0.1283485    33.474  < 2e-16 ***
ORIGIN_ID1158  3.4556897  0.1289686    26.795  < 2e-16 ***
ORIGIN_ID1159  4.4908624  0.1282219    35.024  < 2e-16 ***
ORIGIN_ID1160  6.0771408  0.1280969    47.442  < 2e-16 ***
ORIGIN_ID1162  5.8380447  0.1290191    45.249  < 2e-16 ***
ORIGIN_ID1167  4.1594870  0.1281581    32.456  < 2e-16 ***
ORIGIN_ID1168  3.7675536  0.1281932    29.390  < 2e-16 ***
ORIGIN_ID1169  3.6920239  0.1282050    28.798  < 2e-16 ***
ORIGIN_ID1170  3.5853798  0.1282637    27.953  < 2e-16 ***
ORIGIN_ID1171  4.2091503  0.1281872    32.836  < 2e-16 ***
ORIGIN_ID1172  4.2136833  0.1283070    32.841  < 2e-16 ***
ORIGIN_ID1173  2.7912667  0.1286667    21.694  < 2e-16 ***
ORIGIN_ID1174  4.9344408  0.1281236    38.513  < 2e-16 ***
ORIGIN_ID1175  5.2298254  0.1281157    40.821  < 2e-16 ***
ORIGIN_ID1176  4.8260378  0.1281646    37.655  < 2e-16 ***
ORIGIN_ID1177  1.6477182  0.1343527    12.264  < 2e-16 ***
ORIGIN_ID1179  6.3581233  0.1280889    49.638  < 2e-16 ***
ORIGIN_ID1180  5.4097841  0.1281435    42.217  < 2e-16 ***
ORIGIN_ID1181  4.9905040  0.1283959    38.868  < 2e-16 ***
ORIGIN_ID1188  3.2086304  0.1288021    24.911  < 2e-16 ***
ORIGIN_ID1189  4.3035099  0.1281283    33.588  < 2e-16 ***
ORIGIN_ID1190  3.1514073  0.1283667    24.550  < 2e-16 ***
ORIGIN_ID1192  4.6557982  0.1281289    36.337  < 2e-16 ***
ORIGIN_ID1193  5.1017008  0.1280833    39.831  < 2e-16 ***
ORIGIN_ID1194  5.1314384  0.1281344    40.047  < 2e-16 ***
ORIGIN_ID1195  4.9156055  0.1281295    38.364  < 2e-16 ***
ORIGIN_ID1196  5.3438376  0.1280918    41.719  < 2e-16 ***
ORIGIN_ID1197  4.3294446  0.1281707    33.779  < 2e-16 ***
ORIGIN_ID1198  3.6794462  0.1284395    28.647  < 2e-16 ***
ORIGIN_ID1201  6.7938201  0.1280836    53.042  < 2e-16 ***
ORIGIN_ID1202  6.4386330  0.1281160    50.256  < 2e-16 ***
ORIGIN_ID1210  3.4633406  0.1283051    26.993  < 2e-16 ***
ORIGIN_ID1211  3.5808826  0.1282063    27.931  < 2e-16 ***
ORIGIN_ID1212  4.6503357  0.1280957    36.304  < 2e-16 ***
ORIGIN_ID1213  3.5857985  0.1283118    27.946  < 2e-16 ***
ORIGIN_ID1214  4.5523642  0.1281608    35.521  < 2e-16 ***
ORIGIN_ID1215  5.9029537  0.1280596    46.095  < 2e-16 ***
ORIGIN_ID1216  4.1972463  0.1281611    32.750  < 2e-16 ***
ORIGIN_ID1217  5.2148775  0.1280912    40.712  < 2e-16 ***
ORIGIN_ID1218  6.5195684  0.1280549    50.912  < 2e-16 ***
ORIGIN_ID1219  6.1167102  0.1280726    47.760  < 2e-16 ***
ORIGIN_ID1220  3.6100302  0.1288623    28.015  < 2e-16 ***
ORIGIN_ID1222  5.1291948  0.1283058    39.976  < 2e-16 ***
ORIGIN_ID1223  6.9511091  0.1280925    54.266  < 2e-16 ***
ORIGIN_ID1233  3.3405742  0.1283313    26.031  < 2e-16 ***
ORIGIN_ID1234  4.0533644  0.1281398    31.632  < 2e-16 ***
ORIGIN_ID1235  4.8983290  0.1280886    38.242  < 2e-16 ***
ORIGIN_ID1236  4.0855064  0.1281969    31.869  < 2e-16 ***
ORIGIN_ID1237  4.4293164  0.1281309    34.569  < 2e-16 ***
ORIGIN_ID1238  4.8371965  0.1281033    37.760  < 2e-16 ***
ORIGIN_ID1239  4.6828029  0.1281373    36.545  < 2e-16 ***
ORIGIN_ID1240  5.1761344  0.1281017    40.406  < 2e-16 ***
ORIGIN_ID1241  4.8099726  0.1281342    37.539  < 2e-16 ***
ORIGIN_ID1245  5.4360791  0.1282426    42.389  < 2e-16 ***
ORIGIN_ID1253 -0.7150276  0.1634197    -4.375 1.21e-05 ***
ORIGIN_ID1254  2.0827448  0.1289311    16.154  < 2e-16 ***
ORIGIN_ID1255  4.4579405  0.1281115    34.797  < 2e-16 ***
ORIGIN_ID1256  5.2997074  0.1281285    41.362  < 2e-16 ***
ORIGIN_ID1257  5.3922520  0.1280827    42.100  < 2e-16 ***
ORIGIN_ID1258  5.9747561  0.1280820    46.648  < 2e-16 ***
ORIGIN_ID1259  5.1284065  0.1281052    40.033  < 2e-16 ***
ORIGIN_ID1260  3.5922466  0.1283514    27.988  < 2e-16 ***
ORIGIN_ID1261  5.5269641  0.1280797    43.153  < 2e-16 ***
ORIGIN_ID1263  4.3559806  0.1283918    33.927  < 2e-16 ***
ORIGIN_ID1266  5.6712943  0.1282616    44.217  < 2e-16 ***
ORIGIN_ID1272  2.0088236  0.1298936    15.465  < 2e-16 ***
ORIGIN_ID1273  2.8453693  0.1285388    22.136  < 2e-16 ***
ORIGIN_ID1274  4.1367113  0.1281429    32.282  < 2e-16 ***
ORIGIN_ID1275  4.2959533  0.1281489    33.523  < 2e-16 ***
ORIGIN_ID1276  5.0975143  0.1280837    39.798  < 2e-16 ***
ORIGIN_ID1277  4.8165427  0.1281255    37.592  < 2e-16 ***
ORIGIN_ID1278  3.2698880  0.1284921    25.448  < 2e-16 ***
ORIGIN_ID1279  5.8760783  0.1280946    45.873  < 2e-16 ***
ORIGIN_ID1280  4.6327583  0.1282201    36.131  < 2e-16 ***
ORIGIN_ID1281  3.2379107  0.1299225    24.922  < 2e-16 ***
ORIGIN_ID1283 -0.0362253  0.2083951    -0.174 0.861999    
ORIGIN_ID1289  1.6259244  0.1558628    10.432  < 2e-16 ***
ORIGIN_ID1290 -1.6758475  1.0130041    -1.654 0.098060 .  
ORIGIN_ID1291  1.6711880  0.1303651    12.819  < 2e-16 ***
ORIGIN_ID1292  3.3270752  0.1283573    25.920  < 2e-16 ***
ORIGIN_ID1293  4.5335409  0.1281225    35.384  < 2e-16 ***
ORIGIN_ID1294  5.0159091  0.1280970    39.157  < 2e-16 ***
ORIGIN_ID1295  5.7926511  0.1281316    45.209  < 2e-16 ***
ORIGIN_ID1296  2.7900740  0.1288427    21.655  < 2e-16 ***
ORIGIN_ID1297  2.8809069  0.1304364    22.087  < 2e-16 ***
ORIGIN_ID1298  3.8317753  0.1282922    29.868  < 2e-16 ***
ORIGIN_ID1300  2.8950324  0.1317424    21.975  < 2e-16 ***
ORIGIN_ID1301  1.6831247  0.1424392    11.816  < 2e-16 ***
ORIGIN_ID1302  2.2023208  0.1375615    16.010  < 2e-16 ***
ORIGIN_ID1307  2.1215682  0.1434873    14.786  < 2e-16 ***
ORIGIN_ID1308 -0.7964486  1.0130041    -0.786 0.431736    
ORIGIN_ID1310  4.6175195  0.1281186    36.041  < 2e-16 ***
ORIGIN_ID1311  4.0926458  0.1281837    31.928  < 2e-16 ***
ORIGIN_ID1312  4.3473055  0.1281598    33.921  < 2e-16 ***
ORIGIN_ID1313  1.7191341  0.1355863    12.679  < 2e-16 ***
ORIGIN_ID1314  4.5226376  0.1281486    35.292  < 2e-16 ***
ORIGIN_ID1315  4.1617607  0.1283544    32.424  < 2e-16 ***
ORIGIN_ID1316  4.0034562  0.1283666    31.188  < 2e-16 ***
ORIGIN_ID1317  3.7629672  0.1287610    29.224  < 2e-16 ***
ORIGIN_ID1320  1.0279833  0.1599228     6.428 1.29e-10 ***
ORIGIN_ID1325  4.2166906  0.1289117    32.710  < 2e-16 ***
ORIGIN_ID1326  4.6898561  0.1281092    36.608  < 2e-16 ***
ORIGIN_ID1327  5.4079696  0.1280762    42.225  < 2e-16 ***
ORIGIN_ID1328  4.8438209  0.1281385    37.801  < 2e-16 ***
ORIGIN_ID1329  3.4515865  0.1283736    26.887  < 2e-16 ***
ORIGIN_ID1330  4.0782505  0.1282487    31.800  < 2e-16 ***
ORIGIN_ID1331  5.4381141  0.1281149    42.447  < 2e-16 ***
ORIGIN_ID1332  2.5965775  0.1313157    19.774  < 2e-16 ***
ORIGIN_ID1333  5.2922426  0.1281896    41.284  < 2e-16 ***
ORIGIN_ID1334  2.4044062  0.1325137    18.145  < 2e-16 ***
ORIGIN_ID1338  0.0370906  0.2884068     0.129 0.897670    
ORIGIN_ID1339  5.0629378  0.1285440    39.387  < 2e-16 ***
ORIGIN_ID1341  3.6407848  0.1284219    28.350  < 2e-16 ***
ORIGIN_ID1342  5.3258268  0.1280902    41.579  < 2e-16 ***
ORIGIN_ID1343  4.9721340  0.1281108    38.811  < 2e-16 ***
ORIGIN_ID1344  5.8563904  0.1280693    45.728  < 2e-16 ***
ORIGIN_ID1345  4.5906828  0.1281666    35.818  < 2e-16 ***
ORIGIN_ID1346  4.8885511  0.1281552    38.146  < 2e-16 ***
ORIGIN_ID1347  5.6549097  0.1281205    44.137  < 2e-16 ***
ORIGIN_ID1348  6.0494533  0.1281243    47.215  < 2e-16 ***
ORIGIN_ID1349  2.7015787  0.1370071    19.719  < 2e-16 ***
ORIGIN_ID1355  3.7581928  0.1293443    29.056  < 2e-16 ***
ORIGIN_ID1356  5.2402422  0.1280842    40.912  < 2e-16 ***
ORIGIN_ID1357  2.9837458  0.1290811    23.115  < 2e-16 ***
ORIGIN_ID1358  5.0496457  0.1281371    39.408  < 2e-16 ***
ORIGIN_ID1359  4.3046453  0.1281605    33.588  < 2e-16 ***
ORIGIN_ID1360  4.4021439  0.1281815    34.343  < 2e-16 ***
ORIGIN_ID1361  5.9328645  0.1280730    46.324  < 2e-16 ***
ORIGIN_ID1362  4.7971852  0.1281756    37.427  < 2e-16 ***
ORIGIN_ID1363  6.2554223  0.1280964    48.834  < 2e-16 ***
ORIGIN_ID1364  1.2901650  0.1467232     8.793  < 2e-16 ***
ORIGIN_ID1370  3.6335821  0.1283641    28.307  < 2e-16 ***
ORIGIN_ID1371  5.0744998  0.1281109    39.610  < 2e-16 ***
ORIGIN_ID1372  4.2026774  0.1281697    32.790  < 2e-16 ***
ORIGIN_ID1373  4.1674181  0.1283234    32.476  < 2e-16 ***
ORIGIN_ID1374  4.8162889  0.1281146    37.594  < 2e-16 ***
ORIGIN_ID1376  6.0755581  0.1280704    47.439  < 2e-16 ***
ORIGIN_ID1377  1.8715130  0.1348009    13.884  < 2e-16 ***
ORIGIN_ID1378  3.5326231  0.1321001    26.742  < 2e-16 ***
ORIGIN_ID1383  3.5659220  0.1290722    27.627  < 2e-16 ***
ORIGIN_ID1384  5.0344732  0.1281059    39.299  < 2e-16 ***
ORIGIN_ID1385  4.2792228  0.1281596    33.390  < 2e-16 ***
ORIGIN_ID1386  3.3890528  0.1285068    26.373  < 2e-16 ***
ORIGIN_ID1387  4.2300128  0.1282134    32.992  < 2e-16 ***
ORIGIN_ID1388  3.5290953  0.1285700    27.449  < 2e-16 ***
ORIGIN_ID1389  5.6864563  0.1280890    44.395  < 2e-16 ***
ORIGIN_ID1390  5.9537187  0.1280941    46.479  < 2e-16 ***
ORIGIN_ID1391  5.6187466  0.1281548    43.843  < 2e-16 ***
ORIGIN_ID1396  5.0003889  0.1281254    39.027  < 2e-16 ***
ORIGIN_ID1397  4.9304168  0.1281154    38.484  < 2e-16 ***
ORIGIN_ID1398  4.8217931  0.1281071    37.639  < 2e-16 ***
ORIGIN_ID1399  3.7375960  0.1282897    29.134  < 2e-16 ***
ORIGIN_ID1400  5.7129503  0.1280974    44.598  < 2e-16 ***
ORIGIN_ID1401  4.1610904  0.1282575    32.443  < 2e-16 ***
ORIGIN_ID1402  6.1337883  0.1280742    47.892  < 2e-16 ***
ORIGIN_ID1403  5.0061044  0.1282776    39.026  < 2e-16 ***
ORIGIN_ID1408  4.4788152  0.1283058    34.907  < 2e-16 ***
ORIGIN_ID1409  5.2061085  0.1280934    40.643  < 2e-16 ***
ORIGIN_ID1410  4.5388179  0.1281226    35.426  < 2e-16 ***
ORIGIN_ID1411  4.6092833  0.1281203    35.976  < 2e-16 ***
ORIGIN_ID1412  2.2312599  0.1296741    17.207  < 2e-16 ***
ORIGIN_ID1413  5.0404366  0.1281349    39.337  < 2e-16 ***
ORIGIN_ID1414  5.8704388  0.1280699    45.838  < 2e-16 ***
ORIGIN_ID1415  4.9622089  0.1281639    38.718  < 2e-16 ***
ORIGIN_ID1416  6.4066190  0.1280888    50.017  < 2e-16 ***
ORIGIN_ID1417  6.2400144  0.1283879    48.603  < 2e-16 ***
ORIGIN_ID1421  3.5910841  0.1284107    27.966  < 2e-16 ***
ORIGIN_ID1422  5.0989175  0.1280893    39.808  < 2e-16 ***
ORIGIN_ID1423  3.8397751  0.1282143    29.948  < 2e-16 ***
ORIGIN_ID1424  1.6811331  0.1308280    12.850  < 2e-16 ***
ORIGIN_ID1425  5.1961942  0.1281123    40.560  < 2e-16 ***
ORIGIN_ID1426  5.8314300  0.1280723    45.532  < 2e-16 ***
ORIGIN_ID1427  5.5215840  0.1280903    43.107  < 2e-16 ***
ORIGIN_ID1428  5.4795381  0.1281064    42.773  < 2e-16 ***
ORIGIN_ID1429  5.7192587  0.1281270    44.637  < 2e-16 ***
ORIGIN_ID1432  4.0713516  0.1284452    31.697  < 2e-16 ***
ORIGIN_ID1433  4.4127766  0.1281758    34.428  < 2e-16 ***
ORIGIN_ID1434  1.0148251  0.1325687     7.655 1.93e-14 ***
ORIGIN_ID1435  3.0960559  0.1284225    24.108  < 2e-16 ***
ORIGIN_ID1436 -1.7540016  0.2230515    -7.864 3.73e-15 ***
ORIGIN_ID1437  4.8649277  0.1281571    37.961  < 2e-16 ***
ORIGIN_ID1438  5.4122775  0.1280936    42.253  < 2e-16 ***
ORIGIN_ID1439  5.5857734  0.1281007    43.605  < 2e-16 ***
ORIGIN_ID1440  6.2252370  0.1280755    48.606  < 2e-16 ***
ORIGIN_ID1441  6.2284041  0.1280954    48.623  < 2e-16 ***
ORIGIN_ID1444  4.2963249  0.1282123    33.509  < 2e-16 ***
ORIGIN_ID1445  4.9394471  0.1281028    38.558  < 2e-16 ***
ORIGIN_ID1446  4.4264847  0.1281602    34.539  < 2e-16 ***
ORIGIN_ID1447  2.9011470  0.1290511    22.481  < 2e-16 ***
ORIGIN_ID1448  3.3513171  0.1307577    25.630  < 2e-16 ***
ORIGIN_ID1449  3.9414005  0.1283655    30.705  < 2e-16 ***
ORIGIN_ID1450  5.6711857  0.1280936    44.274  < 2e-16 ***
ORIGIN_ID1451  5.9408521  0.1280799    46.384  < 2e-16 ***
ORIGIN_ID1452  4.8623138  0.1282053    37.926  < 2e-16 ***
ORIGIN_ID1453  5.5273515  0.1282639    43.094  < 2e-16 ***
ORIGIN_ID1455  4.3804364  0.1282394    34.158  < 2e-16 ***
ORIGIN_ID1456  4.6928579  0.1282254    36.599  < 2e-16 ***
ORIGIN_ID1457  4.3605597  0.1281510    34.027  < 2e-16 ***
ORIGIN_ID1458  3.9752498  0.1281972    31.009  < 2e-16 ***
ORIGIN_ID1459  3.2394444  0.1303118    24.859  < 2e-16 ***
ORIGIN_ID1461  4.5956873  0.1286533    35.721  < 2e-16 ***
ORIGIN_ID1462  5.3185700  0.1281389    41.506  < 2e-16 ***
ORIGIN_ID1463  6.6742151  0.1280647    52.116  < 2e-16 ***
ORIGIN_ID1464  6.3391522  0.1280848    49.492  < 2e-16 ***
ORIGIN_ID1465  5.8851049  0.1283885    45.838  < 2e-16 ***
ORIGIN_ID1466  5.3714650  0.1280987    41.932  < 2e-16 ***
ORIGIN_ID1467  5.3858751  0.1280807    42.051  < 2e-16 ***
ORIGIN_ID1468  5.4309164  0.1280767    42.404  < 2e-16 ***
ORIGIN_ID1471  2.2819745  0.1318029    17.314  < 2e-16 ***
ORIGIN_ID1472  5.8419544  0.1281527    45.586  < 2e-16 ***
ORIGIN_ID1473  5.9122223  0.1281127    46.149  < 2e-16 ***
ORIGIN_ID1474  6.8932331  0.1280645    53.826  < 2e-16 ***
ORIGIN_ID1475  2.3633281  0.1327691    17.800  < 2e-16 ***
ORIGIN_ID1478  4.5592337  0.1281484    35.578  < 2e-16 ***
ORIGIN_ID1479  3.6695544  0.1289274    28.462  < 2e-16 ***
ORIGIN_ID1480  5.0629883  0.1281196    39.518  < 2e-16 ***
ORIGIN_ID1483  3.1589256  0.1304570    24.214  < 2e-16 ***
ORIGIN_ID1485  5.5272402  0.1281552    43.129  < 2e-16 ***
ORIGIN_ID1486  4.1462398  0.1285491    32.254  < 2e-16 ***
ORIGIN_ID1487  3.2052983  0.1330348    24.094  < 2e-16 ***
ORIGIN_ID1488  5.5083497  0.1280891    43.004  < 2e-16 ***
ORIGIN_ID1489  3.7353632  0.1283452    29.104  < 2e-16 ***
ORIGIN_ID1490  5.4020714  0.1281093    42.168  < 2e-16 ***
ORIGIN_ID1491  1.1742240  0.1350863     8.692  < 2e-16 ***
ORIGIN_ID1494 -0.7412917  0.1991813    -3.722 0.000198 ***
ORIGIN_ID1495  4.4378682  0.1287535    34.468  < 2e-16 ***
ORIGIN_ID1496  5.6147377  0.1281537    43.813  < 2e-16 ***
ORIGIN_ID1500  4.2255118  0.1282563    32.946  < 2e-16 ***
ORIGIN_ID1501  5.0484626  0.1281189    39.405  < 2e-16 ***
ORIGIN_ID1502  5.4105252  0.1280972    42.238  < 2e-16 ***
ORIGIN_ID1506 -1.1956136  0.4652192    -2.570 0.010170 *  
ORIGIN_ID1507  5.7041810  0.1281631    44.507  < 2e-16 ***
ORIGIN_ID1508  6.5759646  0.1282159    51.288  < 2e-16 ***
ORIGIN_ID1510  4.4993865  0.1282261    35.089  < 2e-16 ***
ORIGIN_ID1511  3.5887075  0.1286162    27.902  < 2e-16 ***
ORIGIN_ID1512  4.7027611  0.1282666    36.664  < 2e-16 ***
ORIGIN_ID1513  3.7044529  0.1284473    28.840  < 2e-16 ***
ORIGIN_ID1516  3.2368288  0.1305871    24.787  < 2e-16 ***
ORIGIN_ID1518  5.8344867  0.1282597    45.490  < 2e-16 ***
ORIGIN_ID1521  4.3942764  0.1282114    34.274  < 2e-16 ***
ORIGIN_ID1522  5.1792781  0.1280993    40.432  < 2e-16 ***
ORIGIN_ID1523  4.8631181  0.1281648    37.944  < 2e-16 ***
ORIGIN_ID1526  1.0958873  0.1424302     7.694 1.42e-14 ***
ORIGIN_ID1530  4.5136421  0.1283650    35.163  < 2e-16 ***
ORIGIN_ID1531  4.4458173  0.1288691    34.499  < 2e-16 ***
ORIGIN_ID1532  5.6994604  0.1280796    44.499  < 2e-16 ***
ORIGIN_ID1533  4.3903426  0.1282689    34.228  < 2e-16 ***
ORIGIN_ID1534  3.4992497  0.1288245    27.163  < 2e-16 ***
ORIGIN_ID1535  2.9394122  0.1302507    22.567  < 2e-16 ***
ORIGIN_ID1536  0.7946192  0.1523868     5.214 1.84e-07 ***
ORIGIN_ID1541  4.4960357  0.1282043    35.069  < 2e-16 ***
ORIGIN_ID1542  6.0824726  0.1280635    47.496  < 2e-16 ***
ORIGIN_ID1543  5.3914538  0.1281279    42.079  < 2e-16 ***
ORIGIN_ID1544  5.4546208  0.1281065    42.579  < 2e-16 ***
ORIGIN_ID1545  3.9273108  0.1284010    30.586  < 2e-16 ***
ORIGIN_ID1546  3.6110202  0.1284605    28.110  < 2e-16 ***
ORIGIN_ID1553  3.7848590  0.1282860    29.503  < 2e-16 ***
ORIGIN_ID1554  5.1832160  0.1280930    40.464  < 2e-16 ***
ORIGIN_ID1555  4.3424639  0.1281845    33.877  < 2e-16 ***
ORIGIN_ID1556  5.8973370  0.1280847    46.042  < 2e-16 ***
ORIGIN_ID1557  4.4860900  0.1282018    34.992  < 2e-16 ***
ORIGIN_ID1558  5.3676666  0.1281247    41.894  < 2e-16 ***
ORIGIN_ID1562  4.4695236  0.1282207    34.858  < 2e-16 ***
ORIGIN_ID1563  5.1465267  0.1280929    40.178  < 2e-16 ***
ORIGIN_ID1564  5.3070879  0.1281008    41.429  < 2e-16 ***
ORIGIN_ID1565  4.5775024  0.1281502    35.720  < 2e-16 ***
ORIGIN_ID1566  5.8897334  0.1280767    45.986  < 2e-16 ***
ORIGIN_ID1568  5.6387947  0.1281091    44.016  < 2e-16 ***
ORIGIN_ID1573  4.8111328  0.1281414    37.545  < 2e-16 ***
ORIGIN_ID1574  5.5383637  0.1281055    43.233  < 2e-16 ***
ORIGIN_ID1575  1.4179866  0.1305464    10.862  < 2e-16 ***
ORIGIN_ID1576  4.6654972  0.1281123    36.417  < 2e-16 ***
ORIGIN_ID1577  4.9860973  0.1281512    38.908  < 2e-16 ***
ORIGIN_ID1578  5.6821214  0.1281002    44.357  < 2e-16 ***
ORIGIN_ID1584  5.3085780  0.1280935    41.443  < 2e-16 ***
ORIGIN_ID1585  3.9782738  0.1284769    30.965  < 2e-16 ***
ORIGIN_ID1586  5.2002689  0.1280817    40.601  < 2e-16 ***
ORIGIN_ID1587  5.2233275  0.1280883    40.779  < 2e-16 ***
ORIGIN_ID1588  4.3721841  0.1284330    34.043  < 2e-16 ***
ORIGIN_ID1589  5.0282088  0.1281863    39.226  < 2e-16 ***
ORIGIN_ID1593  5.2692421  0.1281319    41.124  < 2e-16 ***
ORIGIN_ID1594  5.4686406  0.1280882    42.694  < 2e-16 ***
ORIGIN_ID1595  3.5645207  0.1282968    27.783  < 2e-16 ***
ORIGIN_ID1596  5.9993894  0.1280630    46.847  < 2e-16 ***
ORIGIN_ID1597  4.2568612  0.1283159    33.175  < 2e-16 ***
ORIGIN_ID1598  4.9853819  0.1281269    38.910  < 2e-16 ***
ORIGIN_ID1602  1.9291355  0.1615806    11.939  < 2e-16 ***
ORIGIN_ID1603  2.5213218  0.1297816    19.427  < 2e-16 ***
ORIGIN_ID1604  3.6397134  0.1282669    28.376  < 2e-16 ***
ORIGIN_ID1605  4.2431337  0.1281527    33.110  < 2e-16 ***
ORIGIN_ID1606  4.8142805  0.1281063    37.580  < 2e-16 ***
ORIGIN_ID1607  4.9360764  0.1281323    38.523  < 2e-16 ***
ORIGIN_ID1608  2.4331076  0.1308509    18.594  < 2e-16 ***
ORIGIN_ID1611  2.8536132  0.1292564    22.077  < 2e-16 ***
ORIGIN_ID1612  2.9177781  0.1285998    22.689  < 2e-16 ***
ORIGIN_ID1613  4.5300485  0.1281529    35.349  < 2e-16 ***
ORIGIN_ID1614  5.2999322  0.1280809    41.380  < 2e-16 ***
ORIGIN_ID1615  5.3472964  0.1281335    41.732  < 2e-16 ***
ORIGIN_ID1616  5.5913094  0.1280952    43.650  < 2e-16 ***
ORIGIN_ID1620  4.1383623  0.1284796    32.210  < 2e-16 ***
ORIGIN_ID1621  2.4085792  0.1290184    18.669  < 2e-16 ***
ORIGIN_ID1622  4.8947686  0.1281168    38.206  < 2e-16 ***
ORIGIN_ID1623  5.7754964  0.1280722    45.096  < 2e-16 ***
ORIGIN_ID1624  5.5242395  0.1280908    43.128  < 2e-16 ***
ORIGIN_ID1629  2.5958087  0.1291893    20.093  < 2e-16 ***
ORIGIN_ID1630  4.2459995  0.1281737    33.127  < 2e-16 ***
ORIGIN_ID1631  5.2114915  0.1281570    40.665  < 2e-16 ***
ORIGIN_ID1632  4.8850519  0.1281236    38.128  < 2e-16 ***
ORIGIN_ID1633  5.2990895  0.1281112    41.363  < 2e-16 ***
ORIGIN_ID1638  4.0927084  0.1282617    31.909  < 2e-16 ***
ORIGIN_ID1639  3.8712860  0.1283898    30.153  < 2e-16 ***
ORIGIN_ID1640  4.8441421  0.1281161    37.811  < 2e-16 ***
ORIGIN_ID1641  5.1595478  0.1281245    40.270  < 2e-16 ***
ORIGIN_ID1642  4.0389840  0.1296066    31.163  < 2e-16 ***
ORIGIN_ID1646  1.0723143  0.1352544     7.928 2.22e-15 ***
ORIGIN_ID1647 -0.1583504  0.1457157    -1.087 0.277166    
ORIGIN_ID1648  2.8731450  0.1286632    22.331  < 2e-16 ***
ORIGIN_ID1649  4.4131239  0.1281679    34.432  < 2e-16 ***
ORIGIN_ID1654  1.7380176  0.1312503    13.242  < 2e-16 ***
ORIGIN_ID1655  3.7487026  0.1293184    28.988  < 2e-16 ***
ORIGIN_ID1656  4.3463492  0.1282716    33.884  < 2e-16 ***
ORIGIN_ID1657  4.2029944  0.1283010    32.759  < 2e-16 ***
ORIGIN_ID1658  1.0946505  0.1476776     7.412 1.24e-13 ***
ORIGIN_ID1664  2.2935885  0.1340940    17.104  < 2e-16 ***
ORIGIN_ID1665  2.4776912  0.1298670    19.079  < 2e-16 ***
ORIGIN_ID1666  2.3648204  0.1294778    18.264  < 2e-16 ***
ORIGIN_ID1667  2.2203323  0.1335831    16.621  < 2e-16 ***
ORIGIN_ID1674  4.0986009  0.1294214    31.669  < 2e-16 ***
ORIGIN_ID1675  3.6894524  0.1290111    28.598  < 2e-16 ***
ORIGIN_ID1676  1.1573753  0.1328593     8.711  < 2e-16 ***
ORIGIN_ID1682  4.6711721  0.1283305    36.400  < 2e-16 ***
ORIGIN_ID1685  2.5598923  0.1291894    19.815  < 2e-16 ***
ORIGIN_ID1686  2.7358161  0.1293768    21.146  < 2e-16 ***
ORIGIN_ID1691  2.6769703  0.1294205    20.684  < 2e-16 ***
ORIGIN_ID1693  0.9379363  0.1447607     6.479 9.22e-11 ***
ORIGIN_ID1695  1.7088417  0.1370493    12.469  < 2e-16 ***
ORIGIN_ID1698  4.9580886  0.1290778    38.412  < 2e-16 ***
ORIGIN_ID1704  4.1081938  0.1283472    32.008  < 2e-16 ***
ORIGIN_ID1711  6.0606638  0.1281743    47.285  < 2e-16 ***
ORIGIN_ID1714 -1.8072782  0.2963766    -6.098 1.07e-09 ***
ORIGIN_ID1722  3.4900313  0.1288759    27.081  < 2e-16 ***
ORIGIN_ID1723 -1.1644779  0.1719443    -6.772 1.27e-11 ***
ORIGIN_ID1726  4.3664479  0.1294589    33.728  < 2e-16 ***
ORIGIN_ID1731  2.4705746  0.1295934    19.064  < 2e-16 ***
ORIGIN_ID1732  1.9126865  0.1299097    14.723  < 2e-16 ***
ORIGIN_ID1741  2.4357974  0.1320688    18.443  < 2e-16 ***
ORIGIN_ID1742  4.4564344  0.1284473    34.695  < 2e-16 ***
ORIGIN_ID1750  1.9468707  0.1352701    14.392  < 2e-16 ***
ORIGIN_ID1751  1.2717382  0.1407201     9.037  < 2e-16 ***
ORIGIN_ID1768  4.0404949  0.1339758    30.158  < 2e-16 ***
DESTIN_ID29    1.3402059  0.0552883    24.240  < 2e-16 ***
DESTIN_ID40   -0.3031428  0.0582054    -5.208 1.91e-07 ***
DESTIN_ID41   -0.0263763  0.0545394    -0.484 0.628656    
DESTIN_ID48    0.4335646  0.0610999     7.096 1.28e-12 ***
DESTIN_ID49    0.2908173  0.0531557     5.471 4.47e-08 ***
DESTIN_ID50   -0.3561480  0.0562230    -6.335 2.38e-10 ***
DESTIN_ID51   -0.7037157  0.0552182   -12.744  < 2e-16 ***
DESTIN_ID59   -2.0660749  0.0668936   -30.886  < 2e-16 ***
DESTIN_ID60   -0.4169798  0.0536498    -7.772 7.71e-15 ***
DESTIN_ID61   -3.5677794  0.1127153   -31.653  < 2e-16 ***
DESTIN_ID62    0.7951211  0.0519878    15.294  < 2e-16 ***
DESTIN_ID63   -2.3906169  0.0601506   -39.744  < 2e-16 ***
DESTIN_ID69    1.6310489  0.0538695    30.278  < 2e-16 ***
DESTIN_ID70   -0.3592886  0.0543399    -6.612 3.79e-11 ***
DESTIN_ID71    0.7935761  0.0523083    15.171  < 2e-16 ***
DESTIN_ID72   -1.4994014  0.0551951   -27.165  < 2e-16 ***
DESTIN_ID73   -0.7855246  0.0550322   -14.274  < 2e-16 ***
DESTIN_ID74   -1.3815709  0.0527954   -26.168  < 2e-16 ***
DESTIN_ID82   -2.2628514  0.0688238   -32.879  < 2e-16 ***
DESTIN_ID83   -1.1894508  0.0582394   -20.423  < 2e-16 ***
DESTIN_ID85    0.1494185  0.0516509     2.893 0.003818 ** 
DESTIN_ID86   -0.9054120  0.0520018   -17.411  < 2e-16 ***
DESTIN_ID87   -0.0186862  0.0517547    -0.361 0.718059    
DESTIN_ID98   -0.5204275  0.0520727    -9.994  < 2e-16 ***
DESTIN_ID99   -1.9511302  0.0561277   -34.762  < 2e-16 ***
DESTIN_ID100  -1.3993424  0.0532670   -26.270  < 2e-16 ***
DESTIN_ID109  -1.5672826  0.0659519   -23.764  < 2e-16 ***
DESTIN_ID111  -2.2423027  0.0560357   -40.016  < 2e-16 ***
DESTIN_ID112  -2.6894896  0.0566396   -47.484  < 2e-16 ***
DESTIN_ID113  -4.9913563  0.2631919   -18.965  < 2e-16 ***
DESTIN_ID125  -1.6851406  0.0531021   -31.734  < 2e-16 ***
DESTIN_ID126  -0.9095129  0.0518899   -17.528  < 2e-16 ***
DESTIN_ID135  -0.6954395  0.0587580   -11.836  < 2e-16 ***
DESTIN_ID136  -1.5230856  0.0538927   -28.261  < 2e-16 ***
DESTIN_ID137  -0.4648046  0.0514870    -9.028  < 2e-16 ***
DESTIN_ID138  -3.1519765  0.0934840   -33.717  < 2e-16 ***
DESTIN_ID148   0.0166658  0.0539893     0.309 0.757560    
DESTIN_ID149  -0.8688868  0.0530673   -16.373  < 2e-16 ***
DESTIN_ID150  -1.2730289  0.0558825   -22.780  < 2e-16 ***
DESTIN_ID159   0.8100475  0.0524554    15.443  < 2e-16 ***
DESTIN_ID160  -2.2848337  0.0546146   -41.836  < 2e-16 ***
DESTIN_ID161  -1.4632297  0.0536850   -27.256  < 2e-16 ***
DESTIN_ID171  -1.1801393  0.0604802   -19.513  < 2e-16 ***
DESTIN_ID172  -0.5723959  0.0524260   -10.918  < 2e-16 ***
DESTIN_ID173  -1.0432295  0.0533981   -19.537  < 2e-16 ***
DESTIN_ID185   0.4181671  0.0526366     7.944 1.95e-15 ***
DESTIN_ID186  -1.4498133  0.0530139   -27.348  < 2e-16 ***
DESTIN_ID201   1.2022826  0.0520015    23.120  < 2e-16 ***
DESTIN_ID202  -0.6470783  0.0534155   -12.114  < 2e-16 ***
DESTIN_ID203  -0.1087389  0.0515575    -2.109 0.034938 *  
DESTIN_ID217   0.0503894  0.0546105     0.923 0.356160    
DESTIN_ID218  -3.2312150  0.0780365   -41.406  < 2e-16 ***
DESTIN_ID219  -0.3575905  0.0520677    -6.868 6.52e-12 ***
DESTIN_ID220  -1.1534060  0.0518375   -22.250  < 2e-16 ***
DESTIN_ID234   0.3348940  0.0515838     6.492 8.46e-11 ***
DESTIN_ID235  -1.8372270  0.0523334   -35.106  < 2e-16 ***
DESTIN_ID251  -0.4519427  0.0540751    -8.358  < 2e-16 ***
DESTIN_ID252  -0.7792446  0.0524137   -14.867  < 2e-16 ***
DESTIN_ID253   0.0626083  0.0512244     1.222 0.221618    
DESTIN_ID254   0.0507061  0.0516930     0.981 0.326638    
DESTIN_ID255  -2.0032225  0.0578713   -34.615  < 2e-16 ***
DESTIN_ID268   0.4041435  0.0529503     7.633 2.30e-14 ***
DESTIN_ID269   0.2185277  0.0520300     4.200 2.67e-05 ***
DESTIN_ID270  -1.8591328  0.0521895   -35.623  < 2e-16 ***
DESTIN_ID272   0.9386915  0.0512212    18.326  < 2e-16 ***
DESTIN_ID285  -0.6503417  0.0553214   -11.756  < 2e-16 ***
DESTIN_ID286  -0.3677791  0.0522777    -7.035 1.99e-12 ***
DESTIN_ID287  -1.9456747  0.0518689   -37.511  < 2e-16 ***
DESTIN_ID288  -0.6967686  0.0518195   -13.446  < 2e-16 ***
DESTIN_ID289  -1.3051165  0.0523565   -24.928  < 2e-16 ***
DESTIN_ID303  -1.2487816  0.0536875   -23.260  < 2e-16 ***
DESTIN_ID304  -1.1847176  0.0518638   -22.843  < 2e-16 ***
DESTIN_ID306  -1.8955956  0.0527150   -35.959  < 2e-16 ***
DESTIN_ID307  -2.2851516  0.0568767   -40.177  < 2e-16 ***
DESTIN_ID320  -0.8900202  0.0556089   -16.005  < 2e-16 ***
DESTIN_ID321  -1.4624605  0.0535167   -27.327  < 2e-16 ***
DESTIN_ID322  -2.0694359  0.0521030   -39.718  < 2e-16 ***
DESTIN_ID323  -0.5036211  0.0512545    -9.826  < 2e-16 ***
DESTIN_ID324  -2.1129779  0.0545266   -38.751  < 2e-16 ***
DESTIN_ID325  -3.9678057  0.0727846   -54.514  < 2e-16 ***
DESTIN_ID338   0.5876647  0.0517977    11.345  < 2e-16 ***
DESTIN_ID339  -0.9862253  0.0517504   -19.057  < 2e-16 ***
DESTIN_ID340  -2.1993928  0.0517085   -42.534  < 2e-16 ***
DESTIN_ID341  -2.2151380  0.0517991   -42.764  < 2e-16 ***
DESTIN_ID342  -0.4114959  0.0515448    -7.983 1.43e-15 ***
DESTIN_ID343  -2.0714930  0.0547001   -37.870  < 2e-16 ***
DESTIN_ID353  -0.5092358  0.0535933    -9.502  < 2e-16 ***
DESTIN_ID354   0.8275475  0.0514504    16.084  < 2e-16 ***
DESTIN_ID355  -1.2636757  0.0514887   -24.543  < 2e-16 ***
DESTIN_ID356  -0.5750885  0.0511300   -11.248  < 2e-16 ***
DESTIN_ID357  -2.8767495  0.0528108   -54.473  < 2e-16 ***
DESTIN_ID358  -1.3363317  0.0524374   -25.484  < 2e-16 ***
DESTIN_ID359  -1.6641308  0.0533312   -31.204  < 2e-16 ***
DESTIN_ID360  -4.5838507  0.1791358   -25.589  < 2e-16 ***
DESTIN_ID361  -2.8940763  0.0666619   -43.414  < 2e-16 ***
DESTIN_ID370  -0.8981974  0.0538575   -16.677  < 2e-16 ***
DESTIN_ID371  -3.1571112  0.0690121   -45.747  < 2e-16 ***
DESTIN_ID372  -0.7546961  0.0511861   -14.744  < 2e-16 ***
DESTIN_ID373  -1.5647439  0.0513325   -30.483  < 2e-16 ***
DESTIN_ID375  -4.9750234  0.0891980   -55.775  < 2e-16 ***
DESTIN_ID376  -2.8305769  0.0608150   -46.544  < 2e-16 ***
DESTIN_ID378  -3.0798302  0.0735845   -41.854  < 2e-16 ***
DESTIN_ID379  -0.5744886  0.0535410   -10.730  < 2e-16 ***
DESTIN_ID386  -0.3273320  0.0540587    -6.055 1.40e-09 ***
DESTIN_ID387  -0.0331043  0.0522783    -0.633 0.526582    
DESTIN_ID388  -1.4982565  0.0521469   -28.731  < 2e-16 ***
DESTIN_ID389   0.7985104  0.0510602    15.639  < 2e-16 ***
DESTIN_ID390  -0.8293346  0.0512503   -16.182  < 2e-16 ***
DESTIN_ID395  -4.7750793  0.2066134   -23.111  < 2e-16 ***
DESTIN_ID396  -2.7387329  0.0717625   -38.164  < 2e-16 ***
DESTIN_ID406  -0.9353543  0.0550525   -16.990  < 2e-16 ***
DESTIN_ID407  -0.0032830  0.0518656    -0.063 0.949529    
DESTIN_ID408  -1.9688914  0.0515085   -38.225  < 2e-16 ***
DESTIN_ID409  -1.8108215  0.0513618   -35.256  < 2e-16 ***
DESTIN_ID411  -6.9723827  0.2026697   -34.403  < 2e-16 ***
DESTIN_ID416  -2.9919987  0.0726128   -41.205  < 2e-16 ***
DESTIN_ID417  -1.8643702  0.0622946   -29.928  < 2e-16 ***
DESTIN_ID424  -0.2025242  0.0525234    -3.856 0.000115 ***
DESTIN_ID425  -0.7259048  0.0515091   -14.093  < 2e-16 ***
DESTIN_ID426  -2.1758747  0.0515298   -42.226  < 2e-16 ***
DESTIN_ID427  -1.8831907  0.0515879   -36.505  < 2e-16 ***
DESTIN_ID434  -3.1970781  0.1453637   -21.994  < 2e-16 ***
DESTIN_ID435  -2.1533304  0.0699244   -30.795  < 2e-16 ***
DESTIN_ID441  -1.6501993  0.0539562   -30.584  < 2e-16 ***
DESTIN_ID442  -2.4427772  0.0543031   -44.984  < 2e-16 ***
DESTIN_ID443  -1.0156217  0.0514340   -19.746  < 2e-16 ***
DESTIN_ID444  -1.1862969  0.0512798   -23.134  < 2e-16 ***
DESTIN_ID446  -1.8914674  0.0527085   -35.885  < 2e-16 ***
DESTIN_ID462  -1.0409263  0.0518193   -20.088  < 2e-16 ***
DESTIN_ID463  -2.1184624  0.0522994   -40.506  < 2e-16 ***
DESTIN_ID464  -1.4217649  0.0513430   -27.691  < 2e-16 ***
DESTIN_ID465  -1.1561316  0.0512699   -22.550  < 2e-16 ***
DESTIN_ID467  -1.1824963  0.0520297   -22.727  < 2e-16 ***
DESTIN_ID480   0.2671348  0.0513507     5.202 1.97e-07 ***
DESTIN_ID481  -1.0016601  0.0514147   -19.482  < 2e-16 ***
DESTIN_ID482  -1.4097610  0.0514442   -27.404  < 2e-16 ***
DESTIN_ID483   0.6631682  0.0510960    12.979  < 2e-16 ***
DESTIN_ID501  -2.3904874  0.0542955   -44.027  < 2e-16 ***
DESTIN_ID502  -0.5913158  0.0512607   -11.535  < 2e-16 ***
DESTIN_ID503  -2.5906702  0.0522872   -49.547  < 2e-16 ***
DESTIN_ID504  -0.9668503  0.0512375   -18.870  < 2e-16 ***
DESTIN_ID506  -2.0578792  0.0521868   -39.433  < 2e-16 ***
DESTIN_ID521  -1.6881857  0.0547626   -30.827  < 2e-16 ***
DESTIN_ID522  -2.8055648  0.0531849   -52.751  < 2e-16 ***
DESTIN_ID523  -3.5676867  0.0552639   -64.557  < 2e-16 ***
DESTIN_ID524  -1.7123453  0.0513619   -33.339  < 2e-16 ***
DESTIN_ID543  -0.7193314  0.0513115   -14.019  < 2e-16 ***
DESTIN_ID544  -1.1947355  0.0513048   -23.287  < 2e-16 ***
DESTIN_ID546  -4.3327030  0.0572935   -75.623  < 2e-16 ***
DESTIN_ID558  -0.0211550  0.0514049    -0.412 0.680680    
DESTIN_ID559  -3.4407912  0.0604304   -56.938  < 2e-16 ***
DESTIN_ID560  -3.4738894  0.0540924   -64.221  < 2e-16 ***
DESTIN_ID561  -0.9975646  0.0512194   -19.476  < 2e-16 ***
DESTIN_ID569  -2.6111135  0.0636515   -41.022  < 2e-16 ***
DESTIN_ID575  -0.6842894  0.0521878   -13.112  < 2e-16 ***
DESTIN_ID576  -2.2301850  0.0529510   -42.118  < 2e-16 ***
DESTIN_ID577  -3.8562130  0.0560662   -68.780  < 2e-16 ***
DESTIN_ID578  -1.5086345  0.0513354   -29.388  < 2e-16 ***
DESTIN_ID579  -1.5316434  0.0514226   -29.785  < 2e-16 ***
DESTIN_ID581  -1.5812508  0.0514323   -30.744  < 2e-16 ***
DESTIN_ID582  -4.9110435  0.0688231   -71.357  < 2e-16 ***
DESTIN_ID594  -1.2909046  0.0516155   -25.010  < 2e-16 ***
DESTIN_ID595   0.3061950  0.0511081     5.991 2.08e-09 ***
DESTIN_ID596  -1.1347344  0.0512533   -22.140  < 2e-16 ***
DESTIN_ID597  -1.8215731  0.0515391   -35.344  < 2e-16 ***
DESTIN_ID598  -6.0383956  0.0788768   -76.555  < 2e-16 ***
DESTIN_ID599  -2.2621952  0.0514672   -43.954  < 2e-16 ***
DESTIN_ID600  -1.6666944  0.0516212   -32.287  < 2e-16 ***
DESTIN_ID604  -1.6521469  0.0548593   -30.116  < 2e-16 ***
DESTIN_ID609  -3.0849223  0.0607176   -50.808  < 2e-16 ***
DESTIN_ID610  -1.4383833  0.0516678   -27.839  < 2e-16 ***
DESTIN_ID611  -2.0063252  0.0517694   -38.755  < 2e-16 ***
DESTIN_ID612  -1.0513473  0.0512681   -20.507  < 2e-16 ***
DESTIN_ID613  -1.6838284  0.0513425   -32.796  < 2e-16 ***
DESTIN_ID614  -1.8902708  0.0515339   -36.680  < 2e-16 ***
DESTIN_ID615  -2.1789342  0.0515708   -42.251  < 2e-16 ***
DESTIN_ID616  -0.0605613  0.0511316    -1.184 0.236247    
DESTIN_ID617  -4.6137613  0.0624592   -73.868  < 2e-16 ***
DESTIN_ID620  -2.5768411  0.0590829   -43.614  < 2e-16 ***
DESTIN_ID624  -0.7539798  0.0523096   -14.414  < 2e-16 ***
DESTIN_ID625   0.2006576  0.0516325     3.886 0.000102 ***
DESTIN_ID626  -0.8011764  0.0512888   -15.621  < 2e-16 ***
DESTIN_ID627  -1.0966441  0.0512924   -21.380  < 2e-16 ***
DESTIN_ID628  -1.6093036  0.0513593   -31.334  < 2e-16 ***
DESTIN_ID629  -2.6320122  0.0518129   -50.798  < 2e-16 ***
DESTIN_ID630  -4.0163507  0.0540590   -74.296  < 2e-16 ***
DESTIN_ID631  -1.4493332  0.0512399   -28.285  < 2e-16 ***
DESTIN_ID632  -1.8560201  0.0515428   -36.009  < 2e-16 ***
DESTIN_ID633  -1.7230345  0.0520436   -33.108  < 2e-16 ***
DESTIN_ID635  -1.6927448  0.0534347   -31.679  < 2e-16 ***
DESTIN_ID641  -1.5266167  0.0528406   -28.891  < 2e-16 ***
DESTIN_ID642  -1.2993306  0.0516071   -25.177  < 2e-16 ***
DESTIN_ID643  -0.2636754  0.0512485    -5.145 2.67e-07 ***
DESTIN_ID645  -0.0940616  0.0511231    -1.840 0.065782 .  
DESTIN_ID646  -1.2928392  0.0513087   -25.197  < 2e-16 ***
DESTIN_ID647  -1.6571959  0.0512794   -32.317  < 2e-16 ***
DESTIN_ID649  -0.3265045  0.0512659    -6.369 1.90e-10 ***
DESTIN_ID650  -1.7917785  0.0530460   -33.778  < 2e-16 ***
DESTIN_ID651  -2.0423160  0.0537515   -37.996  < 2e-16 ***
DESTIN_ID652  -1.8923838  0.0538799   -35.122  < 2e-16 ***
DESTIN_ID658  -1.3630774  0.0528281   -25.802  < 2e-16 ***
DESTIN_ID659  -0.9720778  0.0514761   -18.884  < 2e-16 ***
DESTIN_ID660  -1.8675706  0.0519202   -35.970  < 2e-16 ***
DESTIN_ID661   0.3426370  0.0513084     6.678 2.42e-11 ***
DESTIN_ID662  -0.8934895  0.0512327   -17.440  < 2e-16 ***
DESTIN_ID663  -0.0643543  0.0511913    -1.257 0.208705    
DESTIN_ID665  -0.8953158  0.0512479   -17.470  < 2e-16 ***
DESTIN_ID666  -3.2036361  0.0525848   -60.923  < 2e-16 ***
DESTIN_ID667  -0.5202404  0.0513829   -10.125  < 2e-16 ***
DESTIN_ID668  -3.3998718  0.0566434   -60.022  < 2e-16 ***
DESTIN_ID669  -1.9987668  0.0533231   -37.484  < 2e-16 ***
DESTIN_ID670  -3.0259622  0.0811469   -37.290  < 2e-16 ***
DESTIN_ID676  -0.3940422  0.0520459    -7.571 3.70e-14 ***
DESTIN_ID677  -2.0854851  0.0519462   -40.147  < 2e-16 ***
DESTIN_ID678  -1.5290374  0.0515889   -29.639  < 2e-16 ***
DESTIN_ID679  -0.3015430  0.0512343    -5.886 3.97e-09 ***
DESTIN_ID680  -1.7612711  0.0514922   -34.205  < 2e-16 ***
DESTIN_ID682  -1.9002367  0.0513786   -36.985  < 2e-16 ***
DESTIN_ID683  -1.7256664  0.0514183   -33.561  < 2e-16 ***
DESTIN_ID684  -2.8764150  0.0538771   -53.388  < 2e-16 ***
DESTIN_ID685  -1.1348066  0.0516244   -21.982  < 2e-16 ***
DESTIN_ID686  -3.9924225  0.0571824   -69.819  < 2e-16 ***
DESTIN_ID687  -1.5374438  0.0527441   -29.149  < 2e-16 ***
DESTIN_ID696  -1.8282741  0.0525672   -34.780  < 2e-16 ***
DESTIN_ID697  -1.1519206  0.0513609   -22.428  < 2e-16 ***
DESTIN_ID698  -1.8276012  0.0517306   -35.329  < 2e-16 ***
DESTIN_ID699  -0.8353491  0.0513777   -16.259  < 2e-16 ***
DESTIN_ID700  -2.3696728  0.0520329   -45.542  < 2e-16 ***
DESTIN_ID701  -1.7155693  0.0517740   -33.136  < 2e-16 ***
DESTIN_ID702  -2.1372529  0.0517450   -41.304  < 2e-16 ***
DESTIN_ID703  -1.0604605  0.0511923   -20.715  < 2e-16 ***
DESTIN_ID707  -3.6806426  0.0555622   -66.244  < 2e-16 ***
DESTIN_ID716  -2.1194015  0.0531106   -39.905  < 2e-16 ***
DESTIN_ID717  -0.1941345  0.0512611    -3.787 0.000152 ***
DESTIN_ID718   0.8828010  0.0510998    17.276  < 2e-16 ***
DESTIN_ID719  -0.6100158  0.0515934   -11.824  < 2e-16 ***
DESTIN_ID720  -3.2127793  0.0549187   -58.501  < 2e-16 ***
DESTIN_ID722  -0.7676363  0.0513146   -14.959  < 2e-16 ***
DESTIN_ID723  -0.0648172  0.0511237    -1.268 0.204852    
DESTIN_ID724  -2.7773323  0.0521526   -53.254  < 2e-16 ***
DESTIN_ID726  -1.5021091  0.0545163   -27.553  < 2e-16 ***
DESTIN_ID727   0.6529575  0.0511832    12.757  < 2e-16 ***
DESTIN_ID728  -3.2227416  0.0538569   -59.839  < 2e-16 ***
DESTIN_ID735  -3.7306714  0.1021471   -36.523  < 2e-16 ***
DESTIN_ID736  -0.3109503  0.0513043    -6.061 1.35e-09 ***
DESTIN_ID737  -1.0156751  0.0512821   -19.806  < 2e-16 ***
DESTIN_ID738  -2.2485852  0.0522651   -43.023  < 2e-16 ***
DESTIN_ID739  -2.2426853  0.0538255   -41.666  < 2e-16 ***
DESTIN_ID740  -2.5763617  0.0525516   -49.025  < 2e-16 ***
DESTIN_ID741  -2.0814514  0.0519442   -40.071  < 2e-16 ***
DESTIN_ID742  -1.8318018  0.0515839   -35.511  < 2e-16 ***
DESTIN_ID743  -2.4604158  0.0516695   -47.618  < 2e-16 ***
DESTIN_ID747  -2.4614358  0.0524349   -46.943  < 2e-16 ***
DESTIN_ID748  -1.1704940  0.0513488   -22.795  < 2e-16 ***
DESTIN_ID757  -0.5431414  0.0513959   -10.568  < 2e-16 ***
DESTIN_ID758  -0.5152163  0.0513089   -10.041  < 2e-16 ***
DESTIN_ID759  -1.6354275  0.0515649   -31.716  < 2e-16 ***
DESTIN_ID761  -1.0762663  0.0514242   -20.929  < 2e-16 ***
DESTIN_ID762  -3.6198172  0.0556469   -65.050  < 2e-16 ***
DESTIN_ID763  -0.9781104  0.0514946   -18.994  < 2e-16 ***
DESTIN_ID764  -1.1347283  0.0513231   -22.109  < 2e-16 ***
DESTIN_ID765  -1.4249425  0.0516115   -27.609  < 2e-16 ***
DESTIN_ID767  -1.9072209  0.0591799   -32.228  < 2e-16 ***
DESTIN_ID769  -1.7616324  0.0514415   -34.245  < 2e-16 ***
DESTIN_ID770  -0.5789087  0.0513002   -11.285  < 2e-16 ***
DESTIN_ID775  -0.3606018  0.0514407    -7.010 2.38e-12 ***
DESTIN_ID776  -0.3362084  0.0516029    -6.515 7.25e-11 ***
DESTIN_ID777  -1.0924527  0.0514618   -21.228  < 2e-16 ***
DESTIN_ID778  -2.2937701  0.0524660   -43.719  < 2e-16 ***
DESTIN_ID780  -2.0644479  0.0521896   -39.557  < 2e-16 ***
DESTIN_ID782  -2.7435932  0.0531297   -51.640  < 2e-16 ***
DESTIN_ID783  -2.2569258  0.0518018   -43.568  < 2e-16 ***
DESTIN_ID787  -0.0274889  0.0511740    -0.537 0.591153    
DESTIN_ID788  -1.5865674  0.0513681   -30.886  < 2e-16 ***
DESTIN_ID795  -1.4119848  0.0571658   -24.700  < 2e-16 ***
DESTIN_ID796  -1.6569630  0.0523739   -31.637  < 2e-16 ***
DESTIN_ID797  -1.6218978  0.0540722   -29.995  < 2e-16 ***
DESTIN_ID798   0.6102245  0.0511503    11.930  < 2e-16 ***
DESTIN_ID799   0.3044805  0.0511545     5.952 2.65e-09 ***
DESTIN_ID801  -2.3798012  0.0532968   -44.652  < 2e-16 ***
DESTIN_ID802  -1.9306021  0.0516500   -37.379  < 2e-16 ***
DESTIN_ID805  -0.5245672  0.0518966   -10.108  < 2e-16 ***
DESTIN_ID807  -1.8527545  0.0514893   -35.983  < 2e-16 ***
DESTIN_ID808  -1.5979259  0.0514689   -31.046  < 2e-16 ***
DESTIN_ID813   0.1627242  0.0512647     3.174 0.001503 ** 
DESTIN_ID814  -0.2662341  0.0514181    -5.178 2.24e-07 ***
DESTIN_ID815  -0.1834736  0.0512746    -3.578 0.000346 ***
DESTIN_ID816  -2.4640941  0.0534105   -46.135  < 2e-16 ***
DESTIN_ID817  -0.7768225  0.0513380   -15.132  < 2e-16 ***
DESTIN_ID825  -1.8772867  0.0518410   -36.212  < 2e-16 ***
DESTIN_ID826  -1.7934129  0.0514838   -34.835  < 2e-16 ***
DESTIN_ID827  -5.4489905  0.0846096   -64.402  < 2e-16 ***
DESTIN_ID831   0.1350173  0.0513357     2.630 0.008536 ** 
DESTIN_ID832   0.3607842  0.0512365     7.042 1.90e-12 ***
DESTIN_ID833  -0.3341683  0.0512916    -6.515 7.27e-11 ***
DESTIN_ID834  -1.3764197  0.0518566   -26.543  < 2e-16 ***
DESTIN_ID842  -3.4367734  0.0666240   -51.585  < 2e-16 ***
DESTIN_ID844  -0.6296553  0.0512246   -12.292  < 2e-16 ***
DESTIN_ID845  -1.1915191  0.0514746   -23.148  < 2e-16 ***
DESTIN_ID850  -2.1822656  0.0537834   -40.575  < 2e-16 ***
DESTIN_ID851   0.2925078  0.0515953     5.669 1.43e-08 ***
DESTIN_ID852  -0.7139795  0.0514317   -13.882  < 2e-16 ***
DESTIN_ID853  -1.1304969  0.0515724   -21.921  < 2e-16 ***
DESTIN_ID854  -3.3340631  0.0594137   -56.116  < 2e-16 ***
DESTIN_ID855  -1.5535809  0.0518187   -29.981  < 2e-16 ***
DESTIN_ID861   0.5784275  0.0518262    11.161  < 2e-16 ***
DESTIN_ID863  -2.1281493  0.0521026   -40.845  < 2e-16 ***
DESTIN_ID864   0.9043346  0.0511178    17.691  < 2e-16 ***
DESTIN_ID865  -3.0523085  0.0551156   -55.380  < 2e-16 ***
DESTIN_ID869  -2.5539081  0.0620255   -41.175  < 2e-16 ***
DESTIN_ID870   0.0660238  0.0524420     1.259 0.208034    
DESTIN_ID871  -0.0596652  0.0512088    -1.165 0.243964    
DESTIN_ID872  -2.3335291  0.0533044   -43.777  < 2e-16 ***
DESTIN_ID873  -3.1530312  0.0664359   -47.460  < 2e-16 ***
DESTIN_ID880  -4.8298391  0.1056458   -45.717  < 2e-16 ***
DESTIN_ID882  -1.0168668  0.0512761   -19.831  < 2e-16 ***
DESTIN_ID883  -1.7757724  0.0516772   -34.363  < 2e-16 ***
DESTIN_ID887   0.0464989  0.0513549     0.905 0.365231    
DESTIN_ID888  -0.8437394  0.0517547   -16.303  < 2e-16 ***
DESTIN_ID889  -2.6338668  0.0551557   -47.753  < 2e-16 ***
DESTIN_ID890  -0.9932009  0.0514230   -19.314  < 2e-16 ***
DESTIN_ID891  -2.3856426  0.0542694   -43.959  < 2e-16 ***
DESTIN_ID892  -1.8005918  0.0521230   -34.545  < 2e-16 ***
DESTIN_ID899  -2.3335293  0.0621586   -37.542  < 2e-16 ***
DESTIN_ID900  -1.1545273  0.0514533   -22.438  < 2e-16 ***
DESTIN_ID901  -1.4397417  0.0513459   -28.040  < 2e-16 ***
DESTIN_ID902   0.0866668  0.0513292     1.688 0.091325 .  
DESTIN_ID905  -0.2695001  0.0517742    -5.205 1.94e-07 ***
DESTIN_ID907  -2.2818942  0.0525554   -43.419  < 2e-16 ***
DESTIN_ID908   0.0422309  0.0512178     0.825 0.409635    
DESTIN_ID910  -1.3749421  0.0517765   -26.555  < 2e-16 ***
DESTIN_ID917  -2.7846276  0.0707939   -39.334  < 2e-16 ***
DESTIN_ID919  -1.4234531  0.0514240   -27.681  < 2e-16 ***
DESTIN_ID920  -1.1221036  0.0513665   -21.845  < 2e-16 ***
DESTIN_ID921  -0.9694543  0.0518281   -18.705  < 2e-16 ***
DESTIN_ID925   0.6127094  0.0511651    11.975  < 2e-16 ***
DESTIN_ID926  -0.3922438  0.0512915    -7.647 2.05e-14 ***
DESTIN_ID927  -0.7158666  0.0513325   -13.946  < 2e-16 ***
DESTIN_ID928  -1.7612234  0.0518486   -33.969  < 2e-16 ***
DESTIN_ID937  -2.7185469  0.0604787   -44.950  < 2e-16 ***
DESTIN_ID938  -2.0918745  0.0524136   -39.911  < 2e-16 ***
DESTIN_ID939   0.5197244  0.0511487    10.161  < 2e-16 ***
DESTIN_ID940  -1.0997696  0.0514625   -21.370  < 2e-16 ***
DESTIN_ID941  -0.5205841  0.0516973   -10.070  < 2e-16 ***
DESTIN_ID944  -2.6364157  0.0538598   -48.950  < 2e-16 ***
DESTIN_ID945  -0.9212443  0.0514628   -17.901  < 2e-16 ***
DESTIN_ID946  -0.7425649  0.0514599   -14.430  < 2e-16 ***
DESTIN_ID947  -2.6172014  0.0533667   -49.042  < 2e-16 ***
DESTIN_ID948  -0.6870528  0.0514890   -13.344  < 2e-16 ***
DESTIN_ID949   0.0898406  0.0512359     1.753 0.079521 .  
DESTIN_ID956  -2.2084830  0.0648094   -34.077  < 2e-16 ***
DESTIN_ID958  -1.1656777  0.0514407   -22.661  < 2e-16 ***
DESTIN_ID959  -1.0365630  0.0513487   -20.187  < 2e-16 ***
DESTIN_ID960  -0.4712991  0.0514217    -9.165  < 2e-16 ***
DESTIN_ID961  -1.9411339  0.0584269   -33.223  < 2e-16 ***
DESTIN_ID964  -1.0033195  0.0519520   -19.312  < 2e-16 ***
DESTIN_ID965  -0.0865117  0.0512228    -1.689 0.091233 .  
DESTIN_ID966  -1.1172755  0.0523207   -21.354  < 2e-16 ***
DESTIN_ID967  -2.8442043  0.0546464   -52.047  < 2e-16 ***
DESTIN_ID968  -1.0797725  0.0515969   -20.927  < 2e-16 ***
DESTIN_ID975  -4.7967600  0.1309369   -36.634  < 2e-16 ***
DESTIN_ID976  -1.8602262  0.0559596   -33.242  < 2e-16 ***
DESTIN_ID978  -1.4726089  0.0519510   -28.346  < 2e-16 ***
DESTIN_ID979  -0.1847458  0.0513705    -3.596 0.000323 ***
DESTIN_ID980  -0.5345170  0.0515399   -10.371  < 2e-16 ***
DESTIN_ID982  -0.5246574  0.0513850   -10.210  < 2e-16 ***
DESTIN_ID983  -0.6244313  0.0515605   -12.111  < 2e-16 ***
DESTIN_ID984  -0.6235066  0.0513657   -12.139  < 2e-16 ***
DESTIN_ID985  -1.2923408  0.0518432   -24.928  < 2e-16 ***
DESTIN_ID986  -1.5823875  0.0520016   -30.430  < 2e-16 ***
DESTIN_ID987  -2.5691378  0.0558720   -45.983  < 2e-16 ***
DESTIN_ID993  -4.2580231  0.0816328   -52.161  < 2e-16 ***
DESTIN_ID997  -1.1318504  0.0513936   -22.023  < 2e-16 ***
DESTIN_ID998  -2.1530564  0.0527875   -40.787  < 2e-16 ***
DESTIN_ID999   0.1749293  0.0518164     3.376 0.000736 ***
DESTIN_ID1002 -2.0476748  0.0524410   -39.047  < 2e-16 ***
DESTIN_ID1003  0.2281892  0.0511734     4.459 8.23e-06 ***
DESTIN_ID1004 -1.3589008  0.0522253   -26.020  < 2e-16 ***
DESTIN_ID1006 -0.6765643  0.0513932   -13.164  < 2e-16 ***
DESTIN_ID1013 -4.2723008  0.0823509   -51.879  < 2e-16 ***
DESTIN_ID1016 -2.0743729  0.0528191   -39.273  < 2e-16 ***
DESTIN_ID1017 -1.0958695  0.0514938   -21.282  < 2e-16 ***
DESTIN_ID1018 -0.3044099  0.0513337    -5.930 3.03e-09 ***
DESTIN_ID1021 -0.9522186  0.0514124   -18.521  < 2e-16 ***
DESTIN_ID1022  0.4438237  0.0511425     8.678  < 2e-16 ***
DESTIN_ID1023 -1.1437400  0.0516456   -22.146  < 2e-16 ***
DESTIN_ID1024 -0.6946447  0.0515446   -13.477  < 2e-16 ***
DESTIN_ID1026 -2.1494843  0.0574077   -37.442  < 2e-16 ***
DESTIN_ID1027 -3.6371819  0.1006611   -36.133  < 2e-16 ***
DESTIN_ID1031 -5.4382854  0.1141465   -47.643  < 2e-16 ***
DESTIN_ID1032 -0.8469498  0.0517227   -16.375  < 2e-16 ***
DESTIN_ID1036  0.1139971  0.0511782     2.227 0.025917 *  
DESTIN_ID1037 -1.5626592  0.0516487   -30.256  < 2e-16 ***
DESTIN_ID1040  0.5923578  0.0511950    11.571  < 2e-16 ***
DESTIN_ID1041 -0.3505308  0.0513273    -6.829 8.53e-12 ***
DESTIN_ID1042 -0.5350680  0.0512978   -10.431  < 2e-16 ***
DESTIN_ID1043 -2.6536766  0.0555152   -47.801  < 2e-16 ***
DESTIN_ID1045 -1.9449797  0.0526169   -36.965  < 2e-16 ***
DESTIN_ID1046 -3.3166717  0.0609996   -54.372  < 2e-16 ***
DESTIN_ID1051 -5.8775426  0.1110136   -52.944  < 2e-16 ***
DESTIN_ID1052 -0.9917988  0.0515620   -19.235  < 2e-16 ***
DESTIN_ID1053 -2.7812817  0.0532913   -52.190  < 2e-16 ***
DESTIN_ID1055 -2.0725198  0.0533382   -38.856  < 2e-16 ***
DESTIN_ID1056 -0.9137313  0.0513772   -17.785  < 2e-16 ***
DESTIN_ID1059 -0.7433682  0.0535833   -13.873  < 2e-16 ***
DESTIN_ID1060 -1.2885205  0.0516767   -24.934  < 2e-16 ***
DESTIN_ID1061 -0.1079557  0.0512111    -2.108 0.035027 *  
DESTIN_ID1062 -0.7095369  0.0513768   -13.810  < 2e-16 ***
DESTIN_ID1063 -0.7177745  0.0514494   -13.951  < 2e-16 ***
DESTIN_ID1064 -0.2950283  0.0514039    -5.739 9.50e-09 ***
DESTIN_ID1066 -5.5972450  0.1490552   -37.551  < 2e-16 ***
DESTIN_ID1068 -1.7191019  0.0551417   -31.176  < 2e-16 ***
DESTIN_ID1070 -2.9567628  0.0556263   -53.154  < 2e-16 ***
DESTIN_ID1072 -4.5276940  0.0635762   -71.217  < 2e-16 ***
DESTIN_ID1073 -2.7474898  0.0525231   -52.310  < 2e-16 ***
DESTIN_ID1074 -1.8974767  0.0516909   -36.708  < 2e-16 ***
DESTIN_ID1075 -2.5836175  0.0519751   -49.709  < 2e-16 ***
DESTIN_ID1076 -2.1834742  0.0536059   -40.732  < 2e-16 ***
DESTIN_ID1081 -0.8066278  0.0514080   -15.691  < 2e-16 ***
DESTIN_ID1082  0.3726513  0.0511737     7.282 3.29e-13 ***
DESTIN_ID1083 -1.5648244  0.0519960   -30.095  < 2e-16 ***
DESTIN_ID1084 -0.9094668  0.0517740   -17.566  < 2e-16 ***
DESTIN_ID1085 -0.1413923  0.0512685    -2.758 0.005818 ** 
DESTIN_ID1088 -1.6839936  0.0520749   -32.338  < 2e-16 ***
DESTIN_ID1089 -1.3597895  0.0518511   -26.225  < 2e-16 ***
DESTIN_ID1090 -0.3337169  0.0513663    -6.497 8.20e-11 ***
DESTIN_ID1092 -2.7793606  0.0541697   -51.308  < 2e-16 ***
DESTIN_ID1094 -0.5170821  0.0512056   -10.098  < 2e-16 ***
DESTIN_ID1095 -0.6357332  0.0512474   -12.405  < 2e-16 ***
DESTIN_ID1096 -2.5326092  0.0523250   -48.402  < 2e-16 ***
DESTIN_ID1102 -3.0342317  0.0576483   -52.634  < 2e-16 ***
DESTIN_ID1103 -2.3771791  0.0541141   -43.929  < 2e-16 ***
DESTIN_ID1104 -1.0075789  0.0514627   -19.579  < 2e-16 ***
DESTIN_ID1105  0.8156543  0.0511269    15.954  < 2e-16 ***
DESTIN_ID1106 -0.7071545  0.0517547   -13.664  < 2e-16 ***
DESTIN_ID1108 -3.5894050  0.0606106   -59.221  < 2e-16 ***
DESTIN_ID1109 -0.5603359  0.0513854   -10.905  < 2e-16 ***
DESTIN_ID1110 -1.2570939  0.0515799   -24.372  < 2e-16 ***
DESTIN_ID1111 -2.9705711  0.0536720   -55.347  < 2e-16 ***
DESTIN_ID1112 -5.6548962  0.1592178   -35.517  < 2e-16 ***
DESTIN_ID1113 -3.9837270  0.0679630   -58.616  < 2e-16 ***
DESTIN_ID1114 -2.7065258  0.0523153   -51.735  < 2e-16 ***
DESTIN_ID1115 -2.0749600  0.0515775   -40.230  < 2e-16 ***
DESTIN_ID1116 -1.6127447  0.0514013   -31.376  < 2e-16 ***
DESTIN_ID1117 -1.9333097  0.0520603   -37.136  < 2e-16 ***
DESTIN_ID1118 -2.5402824  0.0550619   -46.135  < 2e-16 ***
DESTIN_ID1125 -0.4764097  0.0513131    -9.284  < 2e-16 ***
DESTIN_ID1126 -0.2872462  0.0512597    -5.604 2.10e-08 ***
DESTIN_ID1127 -1.3715461  0.0520774   -26.337  < 2e-16 ***
DESTIN_ID1128 -0.8904130  0.0515370   -17.277  < 2e-16 ***
DESTIN_ID1129 -0.8485422  0.0515068   -16.474  < 2e-16 ***
DESTIN_ID1130 -1.8498606  0.0521663   -35.461  < 2e-16 ***
DESTIN_ID1133 -0.6079496  0.0513088   -11.849  < 2e-16 ***
DESTIN_ID1134 -1.6714795  0.0517701   -32.287  < 2e-16 ***
DESTIN_ID1135 -2.4637904  0.0544071   -45.284  < 2e-16 ***
DESTIN_ID1137  0.6106065  0.0511319    11.942  < 2e-16 ***
DESTIN_ID1138  0.6133407  0.0511299    11.996  < 2e-16 ***
DESTIN_ID1139 -2.2894407  0.0517745   -44.219  < 2e-16 ***
DESTIN_ID1140 -5.6665662  0.1023276   -55.377  < 2e-16 ***
DESTIN_ID1141 -2.5622807  0.0627534   -40.831  < 2e-16 ***
DESTIN_ID1146 -1.0263493  0.0519786   -19.746  < 2e-16 ***
DESTIN_ID1147 -0.0885395  0.0512243    -1.728 0.083904 .  
DESTIN_ID1148 -0.7943459  0.0515730   -15.402  < 2e-16 ***
DESTIN_ID1149 -0.7460018  0.0515877   -14.461  < 2e-16 ***
DESTIN_ID1150 -0.8126881  0.0516803   -15.725  < 2e-16 ***
DESTIN_ID1151 -1.2853654  0.0515419   -24.938  < 2e-16 ***
DESTIN_ID1152 -1.0363317  0.0514125   -20.157  < 2e-16 ***
DESTIN_ID1153 -0.9152701  0.0513985   -17.807  < 2e-16 ***
DESTIN_ID1154 -1.4153083  0.0516692   -27.392  < 2e-16 ***
DESTIN_ID1155 -1.3418017  0.0515244   -26.042  < 2e-16 ***
DESTIN_ID1156 -2.3048642  0.0525219   -43.884  < 2e-16 ***
DESTIN_ID1158 -4.8333324  0.0621349   -77.788  < 2e-16 ***
DESTIN_ID1159 -1.6690161  0.0513125   -32.526  < 2e-16 ***
DESTIN_ID1160 -1.2623093  0.0512933   -24.610  < 2e-16 ***
DESTIN_ID1162 -2.2975722  0.0583334   -39.387  < 2e-16 ***
DESTIN_ID1167 -0.4319083  0.0513956    -8.404  < 2e-16 ***
DESTIN_ID1168 -0.4867358  0.0513647    -9.476  < 2e-16 ***
DESTIN_ID1169 -0.4196883  0.0512724    -8.185 2.71e-16 ***
DESTIN_ID1170 -1.2633091  0.0516380   -24.465  < 2e-16 ***
DESTIN_ID1171 -0.4612264  0.0512883    -8.993  < 2e-16 ***
DESTIN_ID1172 -0.4167143  0.0513765    -8.111 5.02e-16 ***
DESTIN_ID1173 -1.6695684  0.0516766   -32.308  < 2e-16 ***
DESTIN_ID1174 -1.1635589  0.0514298   -22.624  < 2e-16 ***
DESTIN_ID1175 -1.1480723  0.0514226   -22.326  < 2e-16 ***
DESTIN_ID1176 -0.7933175  0.0512996   -15.464  < 2e-16 ***
DESTIN_ID1177 -3.0212879  0.0686230   -44.027  < 2e-16 ***
DESTIN_ID1179 -1.9272944  0.0515230   -37.407  < 2e-16 ***
DESTIN_ID1180 -2.8504725  0.0518742   -54.950  < 2e-16 ***
DESTIN_ID1181 -1.6383701  0.0517380   -31.667  < 2e-16 ***
DESTIN_ID1188 -1.1636803  0.0525539   -22.143  < 2e-16 ***
DESTIN_ID1189  0.1678362  0.0512058     3.278 0.001047 ** 
DESTIN_ID1190 -0.7384498  0.0514652   -14.349  < 2e-16 ***
DESTIN_ID1192 -0.2244635  0.0512555    -4.379 1.19e-05 ***
DESTIN_ID1193 -0.3212871  0.0512070    -6.274 3.51e-10 ***
DESTIN_ID1194 -0.1071258  0.0512856    -2.089 0.036725 *  
DESTIN_ID1195  0.4412576  0.0511414     8.628  < 2e-16 ***
DESTIN_ID1196 -1.2489665  0.0513623   -24.317  < 2e-16 ***
DESTIN_ID1197 -1.5603293  0.0513794   -30.369  < 2e-16 ***
DESTIN_ID1198 -0.6851542  0.0512907   -13.358  < 2e-16 ***
DESTIN_ID1201 -1.5216674  0.0513796   -29.616  < 2e-16 ***
DESTIN_ID1202 -1.7507868  0.0515085   -33.990  < 2e-16 ***
DESTIN_ID1210  0.6871137  0.0511501    13.433  < 2e-16 ***
DESTIN_ID1211  0.0182295  0.0512207     0.356 0.721915    
DESTIN_ID1212  0.1757730  0.0511683     3.435 0.000592 ***
DESTIN_ID1213 -0.4334094  0.0513037    -8.448  < 2e-16 ***
DESTIN_ID1214 -1.2608993  0.0516231   -24.425  < 2e-16 ***
DESTIN_ID1215  0.5829004  0.0511195    11.403  < 2e-16 ***
DESTIN_ID1216 -1.2330679  0.0513562   -24.010  < 2e-16 ***
DESTIN_ID1217 -1.4590475  0.0514217   -28.374  < 2e-16 ***
DESTIN_ID1218  0.7491310  0.0511117    14.657  < 2e-16 ***
DESTIN_ID1219 -0.3748651  0.0512364    -7.316 2.55e-13 ***
DESTIN_ID1220 -0.1628878  0.0512899    -3.176 0.001494 ** 
DESTIN_ID1222 -3.9241200  0.0545897   -71.884  < 2e-16 ***
DESTIN_ID1223 -2.1825094  0.0517206   -42.198  < 2e-16 ***
DESTIN_ID1233  0.7639361  0.0511409    14.938  < 2e-16 ***
DESTIN_ID1234  0.1011144  0.0511777     1.976 0.048183 *  
DESTIN_ID1235 -0.0311393  0.0512049    -0.608 0.543101    
DESTIN_ID1236 -1.0254369  0.0514824   -19.918  < 2e-16 ***
DESTIN_ID1237 -0.9959044  0.0512820   -19.420  < 2e-16 ***
DESTIN_ID1238 -0.8439506  0.0512454   -16.469  < 2e-16 ***
DESTIN_ID1239 -0.6319330  0.0512673   -12.326  < 2e-16 ***
DESTIN_ID1240 -1.2365081  0.0513695   -24.071  < 2e-16 ***
DESTIN_ID1241 -1.0496381  0.0513007   -20.460  < 2e-16 ***
DESTIN_ID1245 -3.1991858  0.0525292   -60.903  < 2e-16 ***
DESTIN_ID1253 -2.4870196  0.0586805   -42.382  < 2e-16 ***
DESTIN_ID1254 -1.2159063  0.0519153   -23.421  < 2e-16 ***
DESTIN_ID1255  0.4867000  0.0511483     9.515  < 2e-16 ***
DESTIN_ID1256 -1.0552881  0.0515074   -20.488  < 2e-16 ***
DESTIN_ID1257 -0.9042988  0.0513844   -17.599  < 2e-16 ***
DESTIN_ID1258 -0.6436356  0.0513836   -12.526  < 2e-16 ***
DESTIN_ID1259 -0.9141544  0.0515453   -17.735  < 2e-16 ***
DESTIN_ID1260 -1.0309641  0.0513015   -20.096  < 2e-16 ***
DESTIN_ID1261 -1.1816924  0.0513299   -23.022  < 2e-16 ***
DESTIN_ID1263 -1.9344201  0.0522416   -37.028  < 2e-16 ***
DESTIN_ID1266 -4.2310585  0.0562463   -75.224  < 2e-16 ***
DESTIN_ID1272 -0.7766243  0.0518997   -14.964  < 2e-16 ***
DESTIN_ID1273 -0.0903308  0.0512399    -1.763 0.077917 .  
DESTIN_ID1274 -0.7602933  0.0513311   -14.812  < 2e-16 ***
DESTIN_ID1275 -1.0934025  0.0513658   -21.287  < 2e-16 ***
DESTIN_ID1276 -1.2603951  0.0513356   -24.552  < 2e-16 ***
DESTIN_ID1277 -1.0256043  0.0513124   -19.987  < 2e-16 ***
DESTIN_ID1278 -2.8717405  0.0528622   -54.325  < 2e-16 ***
DESTIN_ID1279 -0.7032469  0.0513596   -13.693  < 2e-16 ***
DESTIN_ID1280  0.1570994  0.0511688     3.070 0.002139 ** 
DESTIN_ID1281 -4.0199321  0.0645862   -62.241  < 2e-16 ***
DESTIN_ID1283 -3.7392515  0.0591160   -63.253  < 2e-16 ***
DESTIN_ID1289 -1.1471538  0.0808938   -14.181  < 2e-16 ***
DESTIN_ID1290 -2.6323086  0.1122049   -23.460  < 2e-16 ***
DESTIN_ID1291 -1.9571314  0.0543070   -36.038  < 2e-16 ***
DESTIN_ID1292 -0.5734833  0.0513837   -11.161  < 2e-16 ***
DESTIN_ID1293 -0.1354832  0.0511966    -2.646 0.008137 ** 
DESTIN_ID1294 -0.7047795  0.0513225   -13.732  < 2e-16 ***
DESTIN_ID1295 -0.5581269  0.0514574   -10.846  < 2e-16 ***
DESTIN_ID1296 -1.9459378  0.0518432   -37.535  < 2e-16 ***
DESTIN_ID1297 -1.7791298  0.0554479   -32.087  < 2e-16 ***
DESTIN_ID1298 -1.4528299  0.0514896   -28.216  < 2e-16 ***
DESTIN_ID1300 -3.5505636  0.0660378   -53.766  < 2e-16 ***
DESTIN_ID1301 -2.5187564  0.0537117   -46.894  < 2e-16 ***
DESTIN_ID1302 -1.5433935  0.0519374   -29.716  < 2e-16 ***
DESTIN_ID1307 -2.1119008  0.1113196   -18.972  < 2e-16 ***
DESTIN_ID1308 -2.5253520  0.1213380   -20.813  < 2e-16 ***
DESTIN_ID1310 -0.5173812  0.0513061   -10.084  < 2e-16 ***
DESTIN_ID1311 -0.0727548  0.0511869    -1.421 0.155214    
DESTIN_ID1312 -1.0345836  0.0513581   -20.145  < 2e-16 ***
DESTIN_ID1313 -4.3328447  0.0706537   -61.325  < 2e-16 ***
DESTIN_ID1314 -1.8344890  0.0516474   -35.519  < 2e-16 ***
DESTIN_ID1315 -1.6584762  0.0516854   -32.088  < 2e-16 ***
DESTIN_ID1316 -0.4074739  0.0512406    -7.952 1.83e-15 ***
DESTIN_ID1317 -2.7604359  0.0528430   -52.238  < 2e-16 ***
DESTIN_ID1320 -3.0248306  0.0555386   -54.464  < 2e-16 ***
DESTIN_ID1325 -2.0290390  0.0545883   -37.170  < 2e-16 ***
DESTIN_ID1326 -0.6270480  0.0512569   -12.233  < 2e-16 ***
DESTIN_ID1327 -0.3892311  0.0512253    -7.598 3.00e-14 ***
DESTIN_ID1328 -0.9535960  0.0513854   -18.558  < 2e-16 ***
DESTIN_ID1329 -2.5193485  0.0524923   -47.995  < 2e-16 ***
DESTIN_ID1330 -2.6788635  0.0525382   -50.989  < 2e-16 ***
DESTIN_ID1331 -0.1777079  0.0511991    -3.471 0.000519 ***
DESTIN_ID1332 -1.2029504  0.0525565   -22.889  < 2e-16 ***
DESTIN_ID1333 -2.4305710  0.0520910   -46.660  < 2e-16 ***
DESTIN_ID1334 -2.1099519  0.0521434   -40.464  < 2e-16 ***
DESTIN_ID1338 -2.6965644  0.1790680   -15.059  < 2e-16 ***
DESTIN_ID1339 -1.7726480  0.0549723   -32.246  < 2e-16 ***
DESTIN_ID1341 -2.3625173  0.0531248   -44.471  < 2e-16 ***
DESTIN_ID1342  0.0949341  0.0511692     1.855 0.063554 .  
DESTIN_ID1343 -0.8081614  0.0513381   -15.742  < 2e-16 ***
DESTIN_ID1344  0.7167694  0.0511158    14.022  < 2e-16 ***
DESTIN_ID1345 -2.5676643  0.0519996   -49.379  < 2e-16 ***
DESTIN_ID1346 -0.9926647  0.0512735   -19.360  < 2e-16 ***
DESTIN_ID1347 -1.7780975  0.0515654   -34.482  < 2e-16 ***
DESTIN_ID1348 -0.8109860  0.0512988   -15.809  < 2e-16 ***
DESTIN_ID1349 -2.1495311  0.0539875   -39.815  < 2e-16 ***
DESTIN_ID1355 -1.0640934  0.0522346   -20.371  < 2e-16 ***
DESTIN_ID1356 -0.7351683  0.0512935   -14.333  < 2e-16 ***
DESTIN_ID1357 -0.2350532  0.0513533    -4.577 4.71e-06 ***
DESTIN_ID1358 -0.5260701  0.0514668   -10.222  < 2e-16 ***
DESTIN_ID1359 -0.4655575  0.0512332    -9.087  < 2e-16 ***
DESTIN_ID1360 -1.5720926  0.0514666   -30.546  < 2e-16 ***
DESTIN_ID1361 -0.7417322  0.0512176   -14.482  < 2e-16 ***
DESTIN_ID1362 -1.9928530  0.0515271   -38.676  < 2e-16 ***
DESTIN_ID1363 -1.5775131  0.0514707   -30.649  < 2e-16 ***
DESTIN_ID1364 -3.6225278  0.0568965   -63.669  < 2e-16 ***
DESTIN_ID1370 -1.5372749  0.0517297   -29.717  < 2e-16 ***
DESTIN_ID1371 -0.9680257  0.0513632   -18.847  < 2e-16 ***
DESTIN_ID1372 -0.4044020  0.0512258    -7.894 2.91e-15 ***
DESTIN_ID1373 -0.7855846  0.0515800   -15.230  < 2e-16 ***
DESTIN_ID1374 -1.3851400  0.0513762   -26.961  < 2e-16 ***
DESTIN_ID1376 -0.8636962  0.0512226   -16.862  < 2e-16 ***
DESTIN_ID1377 -6.4232676  0.0972714   -66.034  < 2e-16 ***
DESTIN_ID1378 -4.4972058  0.0733904   -61.278  < 2e-16 ***
DESTIN_ID1383 -1.0419845  0.0520719   -20.011  < 2e-16 ***
DESTIN_ID1384 -1.1962536  0.0515226   -23.218  < 2e-16 ***
DESTIN_ID1385 -1.1074196  0.0514019   -21.544  < 2e-16 ***
DESTIN_ID1386 -1.2759701  0.0518353   -24.616  < 2e-16 ***
DESTIN_ID1387 -1.9825404  0.0518375   -38.245  < 2e-16 ***
DESTIN_ID1388 -2.2623502  0.0519867   -43.518  < 2e-16 ***
DESTIN_ID1389 -1.5414966  0.0514333   -29.971  < 2e-16 ***
DESTIN_ID1390 -1.3543014  0.0513974   -26.350  < 2e-16 ***
DESTIN_ID1391 -2.5883545  0.0520750   -49.704  < 2e-16 ***
DESTIN_ID1396 -1.2249850  0.0515805   -23.749  < 2e-16 ***
DESTIN_ID1397 -0.1765606  0.0512093    -3.448 0.000565 ***
DESTIN_ID1398 -1.1070413  0.0514446   -21.519  < 2e-16 ***
DESTIN_ID1399 -0.9402780  0.0513549   -18.309  < 2e-16 ***
DESTIN_ID1400 -0.8247144  0.0514050   -16.043  < 2e-16 ***
DESTIN_ID1401 -1.8511483  0.0515306   -35.923  < 2e-16 ***
DESTIN_ID1402 -0.7336405  0.0512106   -14.326  < 2e-16 ***
DESTIN_ID1403 -3.1590047  0.0530771   -59.517  < 2e-16 ***
DESTIN_ID1408 -1.2217981  0.0518532   -23.563  < 2e-16 ***
DESTIN_ID1409 -0.5094078  0.0512919    -9.932  < 2e-16 ***
DESTIN_ID1410 -0.9475346  0.0513199   -18.463  < 2e-16 ***
DESTIN_ID1411 -0.0499768  0.0511877    -0.976 0.328894    
DESTIN_ID1412 -1.8995918  0.0519329   -36.578  < 2e-16 ***
DESTIN_ID1413 -0.0703376  0.0511842    -1.374 0.169379    
DESTIN_ID1414 -0.0922691  0.0511388    -1.804 0.071186 .  
DESTIN_ID1415 -1.7946490  0.0515078   -34.842  < 2e-16 ***
DESTIN_ID1416 -1.4631992  0.0513882   -28.473  < 2e-16 ***
DESTIN_ID1417 -3.5018822  0.0571303   -61.296  < 2e-16 ***
DESTIN_ID1421 -2.3343257  0.0534279   -43.691  < 2e-16 ***
DESTIN_ID1422  0.1120432  0.0511562     2.190 0.028508 *  
DESTIN_ID1423 -0.3858981  0.0512236    -7.534 4.94e-14 ***
DESTIN_ID1424 -1.1411731  0.0515633   -22.131  < 2e-16 ***
DESTIN_ID1425 -0.5642458  0.0512584   -11.008  < 2e-16 ***
DESTIN_ID1426 -1.0406868  0.0512628   -20.301  < 2e-16 ***
DESTIN_ID1427 -0.9322266  0.0512239   -18.199  < 2e-16 ***
DESTIN_ID1428 -2.1528174  0.0514854   -41.814  < 2e-16 ***
DESTIN_ID1429 -2.3464738  0.0517605   -45.333  < 2e-16 ***
DESTIN_ID1432 -1.5046165  0.0523868   -28.721  < 2e-16 ***
DESTIN_ID1433 -1.0798753  0.0514382   -20.994  < 2e-16 ***
DESTIN_ID1434 -1.5376367  0.0519119   -29.620  < 2e-16 ***
DESTIN_ID1435 -0.0525456  0.0512080    -1.026 0.304834    
DESTIN_ID1436 -0.4138305  0.0524333    -7.893 2.96e-15 ***
DESTIN_ID1437 -1.0564494  0.0514026   -20.552  < 2e-16 ***
DESTIN_ID1438 -1.4294329  0.0513299   -27.848  < 2e-16 ***
DESTIN_ID1439 -0.4258247  0.0511643    -8.323  < 2e-16 ***
DESTIN_ID1440  0.0534882  0.0511304     1.046 0.295509    
DESTIN_ID1441 -1.9938529  0.0515422   -38.684  < 2e-16 ***
DESTIN_ID1444 -1.0706570  0.0515009   -20.789  < 2e-16 ***
DESTIN_ID1445 -0.1463697  0.0511947    -2.859 0.004249 ** 
DESTIN_ID1446 -0.3178128  0.0512824    -6.197 5.74e-10 ***
DESTIN_ID1447 -0.1530050  0.0518376    -2.952 0.003161 ** 
DESTIN_ID1448  0.9643284  0.0515952    18.690  < 2e-16 ***
DESTIN_ID1449 -2.8585732  0.0528469   -54.092  < 2e-16 ***
DESTIN_ID1450 -1.4297606  0.0513262   -27.856  < 2e-16 ***
DESTIN_ID1451 -1.5871020  0.0513020   -30.936  < 2e-16 ***
DESTIN_ID1452 -3.0741473  0.0520067   -59.111  < 2e-16 ***
DESTIN_ID1453 -2.2390035  0.0522775   -42.829  < 2e-16 ***
DESTIN_ID1455 -1.3652998  0.0518189   -26.348  < 2e-16 ***
DESTIN_ID1456 -1.4429148  0.0519603   -27.770  < 2e-16 ***
DESTIN_ID1457 -0.9741309  0.0513611   -18.966  < 2e-16 ***
DESTIN_ID1458 -0.1505986  0.0512115    -2.941 0.003275 ** 
DESTIN_ID1459 -2.6843821  0.0624807   -42.963  < 2e-16 ***
DESTIN_ID1461 -2.7291664  0.0552655   -49.383  < 2e-16 ***
DESTIN_ID1462 -2.4445823  0.0517277   -47.259  < 2e-16 ***
DESTIN_ID1463 -0.7703443  0.0511859   -15.050  < 2e-16 ***
DESTIN_ID1464  0.0226360  0.0511439     0.443 0.658060    
DESTIN_ID1465 -1.7344718  0.0535272   -32.404  < 2e-16 ***
DESTIN_ID1466  0.2333891  0.0511798     4.560 5.11e-06 ***
DESTIN_ID1467 -0.3705804  0.0512155    -7.236 4.63e-13 ***
DESTIN_ID1468 -0.2750669  0.0512127    -5.371 7.83e-08 ***
DESTIN_ID1471 -1.3483143  0.0522302   -25.815  < 2e-16 ***
DESTIN_ID1472 -2.4980532  0.0523419   -47.726  < 2e-16 ***
DESTIN_ID1473 -2.2258100  0.0515959   -43.139  < 2e-16 ***
DESTIN_ID1474 -0.5499497  0.0511779   -10.746  < 2e-16 ***
DESTIN_ID1475 -3.6959832  0.0562014   -65.763  < 2e-16 ***
DESTIN_ID1478 -1.4219375  0.0515168   -27.601  < 2e-16 ***
DESTIN_ID1479 -3.2601482  0.0545674   -59.745  < 2e-16 ***
DESTIN_ID1480 -0.1354770  0.0512353    -2.644 0.008188 ** 
DESTIN_ID1483 -0.1566657  0.0516504    -3.033 0.002420 ** 
DESTIN_ID1485 -2.1884999  0.0515371   -42.465  < 2e-16 ***
DESTIN_ID1486 -3.6282686  0.0533232   -68.043  < 2e-16 ***
DESTIN_ID1487 -2.6764579  0.0558298   -47.940  < 2e-16 ***
DESTIN_ID1488 -0.6436465  0.0513384   -12.537  < 2e-16 ***
DESTIN_ID1489 -2.6036362  0.0530268   -49.100  < 2e-16 ***
DESTIN_ID1490 -1.5918011  0.0517087   -30.784  < 2e-16 ***
DESTIN_ID1491 -2.0613934  0.0532768   -38.692  < 2e-16 ***
DESTIN_ID1494 -3.5793099  0.0773520   -46.273  < 2e-16 ***
DESTIN_ID1495 -3.9472282  0.0598405   -65.962  < 2e-16 ***
DESTIN_ID1496 -2.1953272  0.0515916   -42.552  < 2e-16 ***
DESTIN_ID1500 -1.7204435  0.0518909   -33.155  < 2e-16 ***
DESTIN_ID1501 -0.5449633  0.0512648   -10.630  < 2e-16 ***
DESTIN_ID1502 -0.0359154  0.0512033    -0.701 0.483036    
DESTIN_ID1506 -4.8217445  0.1308220   -36.857  < 2e-16 ***
DESTIN_ID1507 -2.4870681  0.0520239   -47.806  < 2e-16 ***
DESTIN_ID1508 -2.4096693  0.0532428   -45.258  < 2e-16 ***
DESTIN_ID1510 -0.5573734  0.0513763   -10.849  < 2e-16 ***
DESTIN_ID1511 -1.9836337  0.0524075   -37.850  < 2e-16 ***
DESTIN_ID1512 -1.2586048  0.0517710   -24.311  < 2e-16 ***
DESTIN_ID1513 -2.4700894  0.0528530   -46.735  < 2e-16 ***
DESTIN_ID1516 -0.2687923  0.0519284    -5.176 2.26e-07 ***
DESTIN_ID1518 -2.8440051  0.0532837   -53.375  < 2e-16 ***
DESTIN_ID1521 -1.2922936  0.0515431   -25.072  < 2e-16 ***
DESTIN_ID1522 -0.3450539  0.0512243    -6.736 1.63e-11 ***
DESTIN_ID1523 -1.5634940  0.0516755   -30.256  < 2e-16 ***
DESTIN_ID1526 -2.3490268  0.0561543   -41.832  < 2e-16 ***
DESTIN_ID1530 -2.1733901  0.0537234   -40.455  < 2e-16 ***
DESTIN_ID1531 -2.4550412  0.0543564   -45.166  < 2e-16 ***
DESTIN_ID1532 -1.3588145  0.0514719   -26.399  < 2e-16 ***
DESTIN_ID1533 -1.7955676  0.0520486   -34.498  < 2e-16 ***
DESTIN_ID1534 -3.4423026  0.0593177   -58.032  < 2e-16 ***
DESTIN_ID1535 -2.6503220  0.0575474   -46.055  < 2e-16 ***
DESTIN_ID1536  0.0418287  0.0522716     0.800 0.423584    
DESTIN_ID1541 -1.0243142  0.0515150   -19.884  < 2e-16 ***
DESTIN_ID1542  0.9270520  0.0511146    18.137  < 2e-16 ***
DESTIN_ID1543 -1.9904360  0.0520541   -38.238  < 2e-16 ***
DESTIN_ID1544 -0.5577044  0.0513124   -10.869  < 2e-16 ***
DESTIN_ID1545 -1.9333388  0.0520139   -37.170  < 2e-16 ***
DESTIN_ID1546 -1.4288558  0.0516266   -27.677  < 2e-16 ***
DESTIN_ID1553 -1.0416805  0.0513840   -20.272  < 2e-16 ***
DESTIN_ID1554 -1.1414858  0.0513156   -22.244  < 2e-16 ***
DESTIN_ID1555 -1.9109600  0.0517074   -36.957  < 2e-16 ***
DESTIN_ID1556 -0.4845043  0.0512949    -9.445  < 2e-16 ***
DESTIN_ID1557 -1.4306515  0.0515324   -27.762  < 2e-16 ***
DESTIN_ID1558 -0.0611526  0.0512018    -1.194 0.232343    
DESTIN_ID1562 -2.0375654  0.0522387   -39.005  < 2e-16 ***
DESTIN_ID1563 -1.0271640  0.0513236   -20.013  < 2e-16 ***
DESTIN_ID1564 -0.3689785  0.0512180    -7.204 5.84e-13 ***
DESTIN_ID1565 -0.5117011  0.0512440    -9.986  < 2e-16 ***
DESTIN_ID1566 -1.0433528  0.0513827   -20.306  < 2e-16 ***
DESTIN_ID1568 -0.8467955  0.0513643   -16.486  < 2e-16 ***
DESTIN_ID1573 -1.8919438  0.0518374   -36.498  < 2e-16 ***
DESTIN_ID1574 -1.3252658  0.0515704   -25.698  < 2e-16 ***
DESTIN_ID1575 -3.0994001  0.0533675   -58.077  < 2e-16 ***
DESTIN_ID1576 -0.8437874  0.0512454   -16.466  < 2e-16 ***
DESTIN_ID1577 -1.9081358  0.0518688   -36.788  < 2e-16 ***
DESTIN_ID1578 -0.9059028  0.0513597   -17.638  < 2e-16 ***
DESTIN_ID1584 -0.7329892  0.0512998   -14.288  < 2e-16 ***
DESTIN_ID1585 -0.5449072  0.0515279   -10.575  < 2e-16 ***
DESTIN_ID1586 -0.1531532  0.0511797    -2.992 0.002767 ** 
DESTIN_ID1587 -0.2322313  0.0511827    -4.537 5.70e-06 ***
DESTIN_ID1588 -2.4143870  0.0529502   -45.597  < 2e-16 ***
DESTIN_ID1589 -1.5448527  0.0517193   -29.870  < 2e-16 ***
DESTIN_ID1593 -0.7385422  0.0514092   -14.366  < 2e-16 ***
DESTIN_ID1594  0.2526515  0.0511892     4.936 7.99e-07 ***
DESTIN_ID1595 -0.2904748  0.0512392    -5.669 1.44e-08 ***
DESTIN_ID1596  1.0851928  0.0511120    21.232  < 2e-16 ***
DESTIN_ID1597 -3.5767865  0.0572608   -62.465  < 2e-16 ***
DESTIN_ID1598 -1.9173941  0.0517165   -37.075  < 2e-16 ***
DESTIN_ID1602 -2.0454249  0.0816410   -25.054  < 2e-16 ***
DESTIN_ID1603 -5.4447022  0.1263041   -43.108  < 2e-16 ***
DESTIN_ID1604 -0.5433770  0.0513216   -10.588  < 2e-16 ***
DESTIN_ID1605 -2.1563800  0.0518992   -41.549  < 2e-16 ***
DESTIN_ID1606 -1.4823999  0.0514556   -28.809  < 2e-16 ***
DESTIN_ID1607 -0.1356600  0.0512003    -2.650 0.008059 ** 
DESTIN_ID1608 -3.3884410  0.0590150   -57.417  < 2e-16 ***
DESTIN_ID1611 -2.2791242  0.0528917   -43.090  < 2e-16 ***
DESTIN_ID1612 -0.8942991  0.0514630   -17.378  < 2e-16 ***
DESTIN_ID1613  0.0443775  0.0512663     0.866 0.386695    
DESTIN_ID1614 -0.8282687  0.0512756   -16.153  < 2e-16 ***
DESTIN_ID1615 -1.2715758  0.0516806   -24.605  < 2e-16 ***
DESTIN_ID1616  0.6196685  0.0511474    12.115  < 2e-16 ***
DESTIN_ID1620 -1.6374907  0.0526708   -31.089  < 2e-16 ***
DESTIN_ID1621  0.2456255  0.0512289     4.795 1.63e-06 ***
DESTIN_ID1622 -1.5208917  0.0517938   -29.364  < 2e-16 ***
DESTIN_ID1623  0.2837942  0.0511562     5.548 2.90e-08 ***
DESTIN_ID1624 -0.7787906  0.0513308   -15.172  < 2e-16 ***
DESTIN_ID1629 -1.2138780  0.0526156   -23.071  < 2e-16 ***
DESTIN_ID1630 -0.6806463  0.0514492   -13.229  < 2e-16 ***
DESTIN_ID1631 -1.1238505  0.0516029   -21.779  < 2e-16 ***
DESTIN_ID1632 -1.9128821  0.0517008   -36.999  < 2e-16 ***
DESTIN_ID1633 -1.4387348  0.0516862   -27.836  < 2e-16 ***
DESTIN_ID1638 -0.0826305  0.0515018    -1.604 0.108621    
DESTIN_ID1639 -0.8921727  0.0518134   -17.219  < 2e-16 ***
DESTIN_ID1640 -1.7013555  0.0516953   -32.911  < 2e-16 ***
DESTIN_ID1641 -0.7237192  0.0513689   -14.089  < 2e-16 ***
DESTIN_ID1642 -2.8480330  0.0622406   -45.758  < 2e-16 ***
DESTIN_ID1646  0.1189017  0.0516486     2.302 0.021328 *  
DESTIN_ID1647 -0.5097550  0.0517256    -9.855  < 2e-16 ***
DESTIN_ID1648 -0.1021611  0.0513599    -1.989 0.046688 *  
DESTIN_ID1649 -1.4215089  0.0515715   -27.564  < 2e-16 ***
DESTIN_ID1654  0.2428878  0.0518646     4.683 2.83e-06 ***
DESTIN_ID1655  1.1232640  0.0515412    21.793  < 2e-16 ***
DESTIN_ID1656 -0.7726187  0.0516677   -14.954  < 2e-16 ***
DESTIN_ID1657 -0.4077035  0.0513677    -7.937 2.07e-15 ***
DESTIN_ID1658 -0.4453531  0.0524479    -8.491  < 2e-16 ***
DESTIN_ID1664 -0.3363683  0.0522016    -6.444 1.17e-10 ***
DESTIN_ID1665 -2.8821993  0.0563091   -51.185  < 2e-16 ***
DESTIN_ID1666 -0.8546731  0.0516702   -16.541  < 2e-16 ***
DESTIN_ID1667  0.0086771  0.0526768     0.165 0.869161    
DESTIN_ID1674 -1.5223061  0.0550176   -27.669  < 2e-16 ***
DESTIN_ID1675 -0.5604505  0.0523930   -10.697  < 2e-16 ***
DESTIN_ID1676 -1.0496009  0.0519262   -20.213  < 2e-16 ***
DESTIN_ID1682  0.2013910  0.0514033     3.918 8.93e-05 ***
DESTIN_ID1685 -1.2138586  0.0520391   -23.326  < 2e-16 ***
DESTIN_ID1686 -0.8221107  0.0519495   -15.825  < 2e-16 ***
DESTIN_ID1691 -1.5703926  0.0526301   -29.838  < 2e-16 ***
DESTIN_ID1693 -1.5564173  0.0550872   -28.254  < 2e-16 ***
DESTIN_ID1695 -1.3023989  0.0565697   -23.023  < 2e-16 ***
DESTIN_ID1698  0.2270380  0.0538940     4.213 2.52e-05 ***
DESTIN_ID1704 -0.2656612  0.0516288    -5.146 2.67e-07 ***
DESTIN_ID1711  1.6457328  0.0511824    32.154  < 2e-16 ***
DESTIN_ID1714 -3.8112096  0.0785639   -48.511  < 2e-16 ***
DESTIN_ID1722  1.1202508  0.0512870    21.843  < 2e-16 ***
DESTIN_ID1723 -4.2185516  0.0830227   -50.812  < 2e-16 ***
DESTIN_ID1726 -0.9735552  0.0574757   -16.939  < 2e-16 ***
DESTIN_ID1731 -0.3501969  0.0520034    -6.734 1.65e-11 ***
DESTIN_ID1732 -0.6819895  0.0521356   -13.081  < 2e-16 ***
DESTIN_ID1741  0.3043229  0.0525014     5.796 6.77e-09 ***
DESTIN_ID1742  0.9082167  0.0514778    17.643  < 2e-16 ***
DESTIN_ID1750  0.0648329  0.0565671     1.146 0.251744    
DESTIN_ID1751 -0.7742022  0.0554356   -13.966  < 2e-16 ***
DESTIN_ID1768  0.2355765  0.0547472     4.303 1.69e-05 ***
log(dist)     -1.6009267  0.0002896 -5527.648  < 2e-16 ***
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

(Dispersion parameter for poisson family taken to be 1)

    Null deviance: 98394406  on 65075  degrees of freedom
Residual deviance: 25135816  on 63435  degrees of freedom
AIC: 25496393

Number of Fisher Scoring iterations: 7

Goodness of fit

With the aid of R-squared statistics , we will compute the proportion of variance in the dependent variables.

CalcRSquared(dbcSIM$data$TRIPS, dbcSIM$fitted.values)
[1] 0.5737163

With reference to the R-squared (R2) above, we can conclude that the model accounts for about 57% of the variation of flows in the system. In addition, the p-value is <0.05, we can reject the null hypothesis. We also note that there is a relatively improvement in the R2 value.

5.7 Model Comparison

After running all models, we will use another statistical measures to compare the performance. We will be using performance:compare_performance() to measure the Root Mean Squared Error (RMSE). Generally, when we look at RMSE, the performance is better when the number is smaller.

model_list <- list(unconstrained=uncSIM,
                   originConstrained=orcSIM,
                   destinationConstrained=decSIM,
                   doublyConstrained=dbcSIM)

Next, we will compute the RMSE of all the models in model_list file by using the code chunk below.

compare_performance(model_list,
                    metrics = "RMSE")
# Comparison of Model Performance Indices

Name                   | Model |     RMSE
-----------------------------------------
unconstrained          |   glm | 1587.446
originConstrained      |   glm | 1476.694
destinationConstrained |   glm | 1394.096
doublyConstrained      |   glm | 1175.151

By looking at the results, we note that the R2 and RMSE are consistent as both shows doubly constrained SIM as the preferred model. It has the highest R2 results, and the lowest RMSE value of 1,175.151.

5.8 Visualize Fitting

After running the models and comparing the result, we will visualize the observed values and the fitted values.

First, we will extract the fitted values from each model.

#extract fitted values
df <- as.data.frame(uncSIM$fitted.values) %>%
  round(digits = 0)

#append fitted values
flow_data2 <- flow_data2 %>%
  cbind(df) %>%
  rename(uncTRIPS = "uncSIM$fitted.values")
#extract fitted values
df <- as.data.frame(orcSIM$fitted.values) %>%
  round(digits = 0)

#append fitted values
flow_data2 <- flow_data2 %>%
  cbind(df) %>%
  rename(orcTRIPS = "orcSIM$fitted.values")
#extract fitted values
df <- as.data.frame(decSIM$fitted.values) %>%
  round(digits = 0)

#append fitted values
flow_data2 <- flow_data2 %>%
  cbind(df) %>%
  rename(decTRIPS = "decSIM$fitted.values")
#extract fitted values
df <- as.data.frame(dbcSIM$fitted.values) %>%
  round(digits = 0)

#append fitted values
flow_data2 <- flow_data2 %>%
  cbind(df) %>%
  rename(dbcTRIPS = "dbcSIM$fitted.values")

5.8.1 Scatterplot

Then, we will use geom_point() of ggplot2 package to create our scatterplots.

Show the code
unc_p <- ggplot(data = flow_data2,
                aes(x = uncTRIPS,
                    y = TRIPS)) +
  geom_point() +
  geom_smooth(method = lm) +
  theme_minimal()

orc_p <- ggplot(data = flow_data2,
                aes(x = orcTRIPS,
                    y = TRIPS)) +
  geom_point() +
  geom_smooth(method = lm) +
    theme_minimal()

dec_p <- ggplot(data = flow_data2,
                aes(x = decTRIPS,
                    y = TRIPS)) +
  geom_point() +
  geom_smooth(method = lm) +
    theme_minimal()

dbc_p <- ggplot(data = flow_data2,
                aes(x = dbcTRIPS,
                    y = TRIPS)) +
  geom_point() +
  geom_smooth(method = lm) +
    theme_minimal()

#arrange graphs 
plot <- ggarrange(unc_p, orc_p, dec_p, dbc_p,
          ncol = 2,
          nrow = 2)

#add title 
annotate_figure(plot, top = text_grob("Scatterplots across SLM Models"))

The plot above reveals that there are a few statistical outliers that have relatively frequent trips. The slope seems to be smoother for uncTRIPs, followed by orcTRIPs and gradually, become steeper. All of the models have positive correlation.

6. Conclusion and Future Work

In our exercise, we examine the urban mobility patterns of commuters on the time period of Weekday Morning 0600 -0900 by looking at the explanatory variables - Business, Financial Service, HDB, Retail, and School based on hexagonal grid. We used Spatial Interaction Models and found out that the Doubly Constrained SIM yields better results in R2 and RMSE.

To improve our study, after the initial stage of exploring the model, we could perform stepwise regression by adding and removing independent variables, in the predictive model, in order to find the subset of variables in the data set which results in the best performing model. However, it is important to note that adding variables might improve the score of R2, it might causes overfitting issues.

References:

  1. Land Transport Authority. (2023). DataMall. Retrieved from https://datamall.lta.gov.sg/content/datamall/en.html

  2. Wong, K. (2021, August). Tessellation SF: A Map Design Pattern. Retrieved from https://urbandatapalette.com/post/2021-08-tessellation-sf