Stata Analysis of NYC Leading Pedestrian Interval Signal (LPIs)

  • 25 quarters from 2012 to 2018

  • 12,987 intersections

  • 2,689 intersections received LPIs intervention

[40]:
use "..\working_data\analytical_file_panel_qt.dta",clear
[3]:
codebook intersection_id

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
intersection_id                                                                                                                                                                                                                                     (unlabeled)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

                  type:  numeric (int)

                 range:  [1,13214]                    units:  1
         unique values:  12,987                   missing .:  0/324,675

                  mean:   6654.33
              std. dev:   3797.56

           percentiles:        10%       25%       50%       75%       90%
                              1380      3385      6669      9944     11909
[4]:
codebook intersection_id if flag_LPIS_ever == 1

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
intersection_id                                                                                                                                                                                                                                     (unlabeled)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

                  type:  numeric (int)

                 range:  [6,13176]                    units:  1
         unique values:  2,689                    missing .:  0/67,225

                  mean:   6080.92
              std. dev:   3554.56

           percentiles:        10%       25%       50%       75%       90%
                              1543      2868      5980      9370     11025
[5]:
codebook intersection_id if flag_school == 1

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
intersection_id                                                                                                                                                                                                                                     (unlabeled)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

                  type:  numeric (int)

                 range:  [11,13128]                   units:  1
         unique values:  676                      missing .:  0/16,900

                  mean:   5978.72
              std. dev:   3243.53

           percentiles:        10%       25%       50%       75%       90%
                              1658    3494.5    5894.5    8157.5     10599
[6]:
codebook intersection_id if flag_priorityinters == 1

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
intersection_id                                                                                                                                                                                                                                     (unlabeled)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

                  type:  numeric (int)

                 range:  [1,12885]                    units:  1
         unique values:  219                      missing .:  0/5,475

                  mean:   6331.31
              std. dev:   3745.43

           percentiles:        10%       25%       50%       75%       90%
                               971      3223      6363     10013     11305
[7]:
codebook intersection_id if flag_seniors == 1

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
intersection_id                                                                                                                                                                                                                                     (unlabeled)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

                  type:  numeric (int)

                 range:  [1,13164]                    units:  1
         unique values:  2,576                    missing .:  0/64,400

                  mean:   5818.17
              std. dev:   3530.98

           percentiles:        10%       25%       50%       75%       90%
                              1337    1931.5    5947.5    8558.5     10572

Definitions

  • flag_LPIS captures the intersection at the time they became an LPIS intervention

  • flag_LPIS_ever captures the intersection if they EVER received LPIS intervention

[41]:
// Variables of interest
global location_var bronx brooklyn manhattan queens
global distance_var distance_to_Sch
global road_var num_traveling_lanes num_parking_lanes truck_route
global time_variant_var bike_route_tv flag_street_improv flag_left_turn
global outcome_var collision_count flag_collision personsinjured pedestriansinjured
global time_var i.quarterly
[42]:
// Time trends
// i.flag_school##i.quarterly
// i.flag_priorityinters##i.quarterly
// i.flag_seniors##i.quarterly
global time_trend i.flag_school##i.quarterly i.flag_priorityinters##i.quarterly i.flag_seniors##i.quarterly
[43]:
xtset intersection_id quarterly, quarterly
       panel variable:  intersection_id (strongly balanced)
        time variable:  quarterly, 2012q3 to 2018q3
                delta:  1 quarter

Base line averages

[11]:
* Average number of collisions before LPIs were implemented at LPIs intersections
sum collision_count if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
collision_~t |     47,591    2.232544    2.546832          0         77
[12]:
* Average number of collisions before LPIs were implemented at LPIs intersections
sum day_collision_count if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
day_collis~t |     47,591    2.020466    2.332392          0         66
[13]:
* Average number of persons injured before LPIs were implemented at LPIs intersections
sum personsinjured if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
personsinj~d |     47,591     .623122    1.217287          0         27
[14]:
* Average number of persons injured before LPIs were implemented at LPIs intersections
sum day_personsinjured if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
day_pers~red |     47,591    .5438003    1.111464          0         27
[15]:
* Average number of persons injured before LPIs were implemented at LPIs intersections
sum latenight_personsinjured if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
l~onsinjured |     47,591    .0793217    .4144775          0         11
[16]:
* Average number of pedestrians injured before LPIs were implemented at LPIs intersections
sum pedestriansinjured if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
pedestri~red |     47,591    .1917589    .5039872          0         13
[17]:
* Average number of pedestrians injured before LPIs were implemented at LPIs intersections
sum day_pedestriansinjured if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
day_pede~red |     47,591    .1751382    .4780367          0         13
[18]:
* Average number of pedestrians injured before LPIs were implemented at LPIs intersections
sum latenight_pedestriansinjured if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
l~ansinjured |     47,591    .0166208    .1382699          0          4
[19]:
* Average number of cyclist injured before LPIs were implemented at LPIs intersections
sum cyclistinjured if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
cyclistinj~d |     47,591    .0665042     .272294          0          4
[20]:
* Average number of motorist injured before LPIs were implemented at LPIs intersections
sum motoristinjured if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
motoristin~d |     47,591    .3662247    1.011035          0         27
[21]:
* Average number of motorist injured before LPIs were implemented at LPIs intersections
sum day_motoristinjured if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
day_moto~red |     47,591    .3088609    .9161878          0         27
[13]:
* Average number of motorist injured before LPIs were implemented at LPIs intersections
sum latenight_motoristinjured if flag_LPIS_ever == 1 & flag_LPIS == 0

    Variable |        Obs        Mean    Std. Dev.       Min        Max
-------------+---------------------------------------------------------
latenight_.. |     47,591    .0573638    .3781542          0         11

Hausman test

[6]:
xtreg collision_count i.flag_LPIS  $time_variant_var $time_var $time_trend, fe
estimates store fixed
xtreg collision_count i.flag_LPIS  $time_variant_var $time_var $time_trend, re
estimates store random
hausman fixed random

note: 1.flag_school omitted because of collinearity
note: 1.flag_priorityinters omitted because of collinearity
note: 1.flag_seniors omitted because of collinearity

Fixed-effects (within) regression               Number of obs     =    324,675
Group variable: intersecti~d                    Number of groups  =     12,987

R-sq:                                           Obs per group:
     within  = 0.0333                                         min =         25
     between = 0.0789                                         avg =       25.0
     overall = 0.0000                                         max =         25

                                                F(100,311588)     =     107.44
corr(u_i, Xb)  = -0.1570                        Prob > F          =     0.0000

-----------------------------------------------------------------------------------------------
              collision_count |      Coef.   Std. Err.      t    P>|t|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |  -.1776024   .0151172   -11.75   0.000    -.2072317   -.1479731
                bike_route_tv |   .0269855   .0217044     1.24   0.214    -.0155546    .0695256
           flag_street_improv |   -.188277   .0425415    -4.43   0.000    -.2716571   -.1048969
               flag_left_turn |  -.7997689   .0517303   -15.46   0.000    -.9011588    -.698379
                              |
                    quarterly |
                         211  |  -.0272238   .0215861    -1.26   0.207    -.0695319    .0150842
                         212  |  -.1437996   .0215861    -6.66   0.000    -.1861077   -.1014916
                         213  |   .0952777   .0215864     4.41   0.000     .0529689    .1375865
                         214  |  -.0099912   .0215879    -0.46   0.643    -.0523029    .0323205
                         215  |    .022502   .0215896     1.04   0.297    -.0198131    .0648171
                         216  |  -.1372205   .0215896    -6.36   0.000    -.1795355   -.0949054
                         217  |   .0307486   .0215924     1.42   0.154    -.0115719    .0730691
                         218  |   .0002867   .0215957     0.01   0.989    -.0420403    .0426137
                         219  |   .0133289   .0215971     0.62   0.537    -.0290008    .0556587
                         220  |  -.1356572   .0215975    -6.28   0.000    -.1779877   -.0933267
                         221  |   .0523985   .0216025     2.43   0.015     .0100581    .0947388
                         222  |    .091027   .0216102     4.21   0.000     .0486716    .1333823
                         223  |   .1410987   .0216175     6.53   0.000      .098729    .1834683
                         224  |   -.087746   .0216207    -4.06   0.000    -.1301219   -.0453701
                         225  |  -.4078028   .0216323   -18.85   0.000    -.4502015   -.3654041
                         226  |  -.6724283   .0216545   -31.05   0.000    -.7148706   -.6299861
                         227  |   -.645612   .0216727   -29.79   0.000    -.6880899   -.6031341
                         228  |  -.3490299   .0216824   -16.10   0.000    -.3915268    -.306533
                         229  |  -.0729462   .0216935    -3.36   0.001    -.1154649   -.0304276
                         230  |  -.3202074   .0217071   -14.75   0.000    -.3627527    -.277662
                         231  |  -.2129973   .0217205    -9.81   0.000     -.255569   -.1704257
                         232  |  -.2692511   .0217358   -12.39   0.000    -.3118527   -.2266495
                         233  |  -.1130946    .021766    -5.20   0.000    -.1557552   -.0704339
                         234  |   -.254319   .0217944   -11.67   0.000    -.2970355   -.2116026
                              |
                1.flag_school |          0  (omitted)
                              |
        flag_school#quarterly |
                       1 211  |   .1182385   .0847609     1.39   0.163    -.0478904    .2843674
                       1 212  |   .0835204   .0847609     0.99   0.324    -.0826085    .2496493
                       1 213  |   .1587193   .0847608     1.87   0.061    -.0074096    .3248481
                       1 214  |   .0459541   .0847608     0.54   0.588    -.1201748    .2120829
                       1 215  |    .002042   .0847609     0.02   0.981    -.1640869    .1681709
                       1 216  |     .11072   .0847609     1.31   0.191    -.0554088    .2768489
                       1 217  |    .002922    .084761     0.03   0.973    -.1632072    .1690511
                       1 218  |   .0244281   .0847613     0.29   0.773    -.1417016    .1905578
                       1 219  |   .0857961   .0847609     1.01   0.311    -.0803329    .2519251
                       1 220  |    .139316   .0847609     1.64   0.100    -.0268131     .305445
                       1 221  |   .0013831    .084761     0.02   0.987    -.1647461    .1675122
                       1 222  |   .0060462   .0847613     0.07   0.943    -.1600835     .172176
                       1 223  |     .04823   .0847626     0.57   0.569    -.1179024    .2143623
                       1 224  |    .034811   .0847625     0.41   0.681    -.1313212    .2009431
                       1 225  |   .1373576    .084763     1.62   0.105    -.0287754    .3034907
                       1 226  |   .0759265   .0847681     0.90   0.370    -.0902165    .2420696
                       1 227  |   .0679298   .0847667     0.80   0.423    -.0982106    .2340702
                       1 228  |   .0303498   .0847698     0.36   0.720    -.1357966    .1964962
                       1 229  |   .0271477   .0847707     0.32   0.749    -.1390005    .1932959
                       1 230  |  -.0136784   .0847717    -0.16   0.872    -.1798285    .1524717
                       1 231  |   .0550566   .0847714     0.65   0.516    -.1110929    .2212061
                       1 232  |   .0484018   .0847755     0.57   0.568    -.1177559    .2145594
                       1 233  |  -.0759146   .0847756    -0.90   0.371    -.2420724    .0902433
                       1 234  |  -.0266903   .0847737    -0.31   0.753    -.1928444    .1394638
                              |
        1.flag_priorityinters |          0  (omitted)
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.2768213    .146248    -1.89   0.058    -.5634632    .0098206
                       1 212  |  -.7644635    .146248    -5.23   0.000    -1.051105   -.4778215
                       1 213  |  -.3837691    .146248    -2.62   0.009    -.6704111   -.0971272
                       1 214  |  -.4429826   .1462481    -3.03   0.002    -.7296247   -.1563405
                       1 215  |   .1814199   .1462482     1.24   0.215    -.1052224    .4680622
                       1 216  |  -1.046841   .1462483    -7.16   0.000    -1.333484   -.7601986
                       1 217  |  -.5362038   .1462485    -3.67   0.000    -.8228466   -.2495609
                       1 218  |  -.4022144   .1462487    -2.75   0.006    -.6888577    -.115571
                       1 219  |  -.3418119   .1462487    -2.34   0.019    -.6284553   -.0551685
                       1 220  |    -1.0348   .1462487    -7.08   0.000    -1.321444   -.7481571
                       1 221  |  -.5501796    .146249    -3.76   0.000    -.8368235   -.2635357
                       1 222  |  -.1748565   .1462531    -1.20   0.232    -.4615084    .1117953
                       1 223  |  -.4976802   .1462546    -3.40   0.001    -.7843351   -.2110253
                       1 224  |  -.8337732   .1462804    -5.70   0.000    -1.120479   -.5470679
                       1 225  |  -1.754218   .1462875   -11.99   0.000    -2.040937   -1.467498
                       1 226  |  -2.291793   .1462879   -15.67   0.000    -2.578513   -2.005073
                       1 227  |  -2.182984   .1463515   -14.92   0.000    -2.469829   -1.896139
                       1 228  |  -1.663286   .1463401   -11.37   0.000    -1.950109   -1.376464
                       1 229  |  -1.526703   .1463419   -10.43   0.000    -1.813529   -1.239877
                       1 230  |  -1.726626   .1463615   -11.80   0.000    -2.013491   -1.439762
                       1 231  |  -1.390512   .1463759    -9.50   0.000    -1.677405   -1.103619
                       1 232  |  -1.702154    .146373   -11.63   0.000    -1.989041   -1.415267
                       1 233  |  -1.436331   .1463697    -9.81   0.000    -1.723212   -1.149451
                       1 234  |  -1.569914   .1463674   -10.73   0.000    -1.856789   -1.283038
                              |
               1.flag_seniors |          0  (omitted)
                              |
       flag_seniors#quarterly |
                       1 211  |   .0112276   .0472246     0.24   0.812    -.0813312    .1037865
                       1 212  |  -.0483955   .0472246    -1.02   0.305    -.1409544    .0441633
                       1 213  |  -.0515704    .047225    -1.09   0.275    -.1441301    .0409892
                       1 214  |   .0694257   .0472255     1.47   0.142    -.0231349    .1619863
                       1 215  |   .1013443   .0472251     2.15   0.032     .0087845    .1939041
                       1 216  |   .0360209   .0472251     0.76   0.446    -.0565389    .1285807
                       1 217  |   .0579079    .047225     1.23   0.220    -.0346517    .1504675
                       1 218  |   .0170646   .0472253     0.36   0.718    -.0754955    .1096248
                       1 219  |   .0415852   .0472287     0.88   0.379    -.0509818    .1341521
                       1 220  |  -.0611882   .0472287    -1.30   0.195    -.1537552    .0313788
                       1 221  |   .1250521   .0472296     2.65   0.008     .0324834    .2176208
                       1 222  |     .10313   .0472294     2.18   0.029     .0105616    .1956983
                       1 223  |   .0702699   .0472321     1.49   0.137    -.0223036    .1628435
                       1 224  |  -.0735621   .0472315    -1.56   0.119    -.1661345    .0190103
                       1 225  |  -.2103285   .0472304    -4.45   0.000    -.3028988   -.1177582
                       1 226  |  -.1955049   .0472345    -4.14   0.000    -.2880832   -.1029265
                       1 227  |   -.156215   .0472419    -3.31   0.001    -.2488079   -.0636222
                       1 228  |  -.1819107   .0472496    -3.85   0.000    -.2745186   -.0893029
                       1 229  |  -.1517847   .0472675    -3.21   0.001    -.2444275   -.0591418
                       1 230  |  -.0856614   .0472881    -1.81   0.070    -.1783448    .0070219
                       1 231  |  -.2175487   .0472927    -4.60   0.000    -.3102411   -.1248563
                       1 232  |  -.2530286   .0472988    -5.35   0.000    -.3457328   -.1603243
                       1 233  |  -.1730564   .0473005    -3.66   0.000    -.2657639   -.0803488
                       1 234  |  -.2549443   .0473015    -5.39   0.000    -.3476539   -.1622346
                              |
                        _cons |   1.840794   .0138521   132.89   0.000     1.813645    1.867944
------------------------------+----------------------------------------------------------------
                      sigma_u |  2.0396001
                      sigma_e |  1.5170324
                          rho |  .64382286   (fraction of variance due to u_i)
-----------------------------------------------------------------------------------------------
F test that all u_i=0: F(12986, 311588) = 39.99              Prob > F = 0.0000



Random-effects GLS regression                   Number of obs     =    324,675
Group variable: intersecti~d                    Number of groups  =     12,987

R-sq:                                           Obs per group:
     within  = 0.0333                                         min =         25
     between = 0.0649                                         avg =       25.0
     overall = 0.0534                                         max =         25

                                                Wald chi2(103)    =   11634.64
corr(u_i, X)   = 0 (assumed)                    Prob > chi2       =     0.0000

-----------------------------------------------------------------------------------------------
              collision_count |      Coef.   Std. Err.      z    P>|z|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |  -.1541534   .0150074   -10.27   0.000    -.1835673   -.1247395
                bike_route_tv |   .1192156   .0192894     6.18   0.000     .0814091    .1570221
           flag_street_improv |  -.1170945   .0414275    -2.83   0.005    -.1982909    -.035898
               flag_left_turn |  -.7300794   .0515112   -14.17   0.000    -.8310394   -.6291194
                              |
                    quarterly |
                         211  |  -.0276787   .0216032    -1.28   0.200    -.0700202    .0146628
                         212  |  -.1442547   .0216032    -6.68   0.000    -.1865962   -.1019132
                         213  |   .0945363   .0216035     4.38   0.000     .0521942    .1368783
                         214  |  -.0113427   .0216047    -0.53   0.600    -.0536871    .0310016
                         215  |   .0206749    .021606     0.96   0.339    -.0216721    .0630219
                         216  |  -.1390533    .021606    -6.44   0.000    -.1814003   -.0967063
                         217  |     .02834   .0216082     1.31   0.190    -.0140113    .0706914
                         218  |   -.002686   .0216109    -0.12   0.901    -.0450425    .0396705
                         219  |   .0100903    .021612     0.47   0.641    -.0322684     .052449
                         220  |  -.1390465   .0216124    -6.43   0.000     -.181406   -.0966869
                         221  |    .048304   .0216166     2.23   0.025     .0059363    .0906718
                         222  |   .0860629    .021623     3.98   0.000     .0436825    .1284433
                         223  |   .1354114   .0216293     6.26   0.000     .0930187    .1778041
                         224  |    -.09367   .0216325    -4.33   0.000    -.1360689   -.0512712
                         225  |  -.4145354   .0216434   -19.15   0.000    -.4569555   -.3721152
                         226  |  -.6804901   .0216635   -31.41   0.000    -.7229499   -.6380303
                         227  |  -.6549284   .0216791   -30.21   0.000    -.6974187   -.6124381
                         228  |  -.3586337   .0216887   -16.54   0.000    -.4011428   -.3161246
                         229  |   -.082869   .0216997    -3.82   0.000    -.1253997   -.0403383
                         230  |   -.330618   .0217132   -15.23   0.000    -.3731751    -.288061
                         231  |  -.2239844   .0217263   -10.31   0.000    -.2665672   -.1814016
                         232  |  -.2805337   .0217415   -12.90   0.000    -.3231462   -.2379212
                         233  |  -.1249192   .0217713    -5.74   0.000    -.1675901   -.0822482
                         234  |  -.2666283   .0217994   -12.23   0.000    -.3093544   -.2239022
                              |
                1.flag_school |   -.338898   .0952047    -3.56   0.000    -.5254958   -.1523002
                              |
        flag_school#quarterly |
                       1 211  |   .1185995   .0848283     1.40   0.162     -.047661    .2848599
                       1 212  |   .0838836   .0848283     0.99   0.323    -.0823769     .250144
                       1 213  |   .1585783   .0848283     1.87   0.062     -.007682    .3248387
                       1 214  |   .0457841   .0848283     0.54   0.589    -.1204763    .2120445
                       1 215  |   .0022981   .0848283     0.03   0.978    -.1639623    .1685585
                       1 216  |   .1109854   .0848283     1.31   0.191     -.055275    .2772458
                       1 217  |   .0037165   .0848284     0.04   0.965    -.1625441    .1699772
                       1 218  |    .025724   .0848286     0.30   0.762    -.1405371    .1919851
                       1 219  |    .086111   .0848284     1.02   0.310    -.0801496    .2523716
                       1 220  |   .1396194   .0848284     1.65   0.100    -.0266411      .30588
                       1 221  |   .0015782   .0848285     0.02   0.985    -.1646825    .1678389
                       1 222  |   .0061572   .0848287     0.07   0.942    -.1601041    .1724185
                       1 223  |   .0463384   .0848298     0.55   0.585     -.119925    .2126018
                       1 224  |   .0328414   .0848297     0.39   0.699    -.1334218    .1991046
                       1 225  |   .1353045   .0848302     1.60   0.111    -.0309596    .3015686
                       1 226  |   .0727752   .0848351     0.86   0.391    -.0934986    .2390491
                       1 227  |   .0650766   .0848339     0.77   0.443    -.1011947     .231348
                       1 228  |   .0271244   .0848369     0.32   0.749     -.139153    .1934017
                       1 229  |   .0238744   .0848378     0.28   0.778    -.1424047    .1901536
                       1 230  |  -.0172748   .0848388    -0.20   0.839    -.1835558    .1490062
                       1 231  |   .0514199   .0848385     0.61   0.544    -.1148605    .2177003
                       1 232  |   .0443731   .0848426     0.52   0.601    -.1219153    .2106616
                       1 233  |  -.0798382   .0848427    -0.94   0.347    -.2461268    .0864504
                       1 234  |  -.0305681   .0848408    -0.36   0.719     -.196853    .1357169
                              |
        1.flag_priorityinters |   4.679146   .1642698    28.48   0.000     4.357183    5.001109
                              |
flag_priorityinters#quarterly |
                       1 211  |   -.276322   .1463644    -1.89   0.059    -.5631909    .0105469
                       1 212  |  -.7639617   .1463644    -5.22   0.000    -1.050831   -.4770928
                       1 213  |  -.3833331   .1463644    -2.62   0.009     -.670202   -.0964642
                       1 214  |  -.4422601   .1463644    -3.02   0.003    -.7291291   -.1553911
                       1 215  |   .1819049   .1463645     1.24   0.214    -.1049643    .4687742
                       1 216  |  -1.046455   .1463646    -7.15   0.000    -1.333324   -.7595856
                       1 217  |  -.5353093   .1463648    -3.66   0.000     -.822179   -.2484396
                       1 218  |  -.4016516    .146365    -2.74   0.006    -.6885218   -.1147814
                       1 219  |  -.3408967    .146365    -2.33   0.020    -.6277669   -.0540266
                       1 220  |  -1.033869    .146365    -7.06   0.000    -1.320739   -.7469987
                       1 221  |  -.5506984   .1463653    -3.76   0.000    -.8375692   -.2638277
                       1 222  |  -.1770761   .1463693    -1.21   0.226    -.4639547    .1098025
                       1 223  |  -.4997098   .1463708    -3.41   0.001    -.7865913   -.2128284
                       1 224  |  -.8386023   .1463961    -5.73   0.000    -1.125533   -.5516711
                       1 225  |  -1.760631   .1464032   -12.03   0.000    -2.047575   -1.473686
                       1 226  |  -2.298024   .1464035   -15.70   0.000    -2.584969   -2.011078
                       1 227  |  -2.194914    .146466   -14.99   0.000    -2.481982   -1.907845
                       1 228  |   -1.67466   .1464548   -11.43   0.000    -1.961706   -1.387614
                       1 229  |  -1.538135   .1464566   -10.50   0.000    -1.825184   -1.251085
                       1 230  |  -1.739646    .146476   -11.88   0.000    -2.026733   -1.452558
                       1 231  |  -1.404436   .1464903    -9.59   0.000    -1.691551    -1.11732
                       1 232  |  -1.715931   .1464873   -11.71   0.000    -2.003041   -1.428821
                       1 233  |  -1.449935   .1464842    -9.90   0.000    -1.737039   -1.162832
                       1 234  |  -1.583557   .1464818   -10.81   0.000    -1.870656   -1.296458
                              |
               1.flag_seniors |   .5416405   .0530467    10.21   0.000     .4376708    .6456102
                              |
       flag_seniors#quarterly |
                       1 211  |   .0110062   .0472622     0.23   0.816    -.0816259    .1036384
                       1 212  |   -.048626   .0472622    -1.03   0.304    -.1412582    .0440061
                       1 213  |  -.0524068   .0472625    -1.11   0.267    -.1450396    .0402259
                       1 214  |   .0682189   .0472628     1.44   0.149    -.0244145    .1608524
                       1 215  |   .1003762   .0472625     2.12   0.034     .0077434    .1930091
                       1 216  |    .035042   .0472625     0.74   0.458    -.0575909    .1276748
                       1 217  |   .0571143   .0472625     1.21   0.227    -.0355185    .1497471
                       1 218  |   .0159525   .0472627     0.34   0.736    -.0766808    .1085857
                       1 219  |   .0386608   .0472655     0.82   0.413    -.0539779    .1312994
                       1 220  |  -.0640072   .0472655    -1.35   0.176     -.156646    .0286315
                       1 221  |   .1219444   .0472663     2.58   0.010     .0293041    .2145847
                       1 222  |    .100077   .0472664     2.12   0.034     .0074365    .1927175
                       1 223  |   .0662261   .0472686     1.40   0.161    -.0264186    .1588707
                       1 224  |  -.0774483    .047268    -1.64   0.101    -.1700919    .0151952
                       1 225  |  -.2140105   .0472671    -4.53   0.000    -.3066524   -.1213686
                       1 226  |  -.2003621   .0472704    -4.24   0.000    -.2930104   -.1077138
                       1 227  |  -.1626634   .0472764    -3.44   0.001    -.2553235   -.0700033
                       1 228  |   -.189337   .0472841    -4.00   0.000    -.2820121   -.0966619
                       1 229  |  -.1602261   .0473018    -3.39   0.001     -.252936   -.0675162
                       1 230  |  -.0950636   .0473223    -2.01   0.045    -.1878135   -.0023136
                       1 231  |  -.2274059   .0473268    -4.81   0.000    -.3201648   -.1346471
                       1 232  |  -.2630807   .0473328    -5.56   0.000    -.3558512   -.1703102
                       1 233  |  -.1833399   .0473345    -3.87   0.000    -.2761138    -.090566
                       1 234  |  -.2652927   .0473355    -5.60   0.000    -.3580686   -.1725169
                              |
                        _cons |   1.655543   .0245007    67.57   0.000     1.607522    1.703563
------------------------------+----------------------------------------------------------------
                      sigma_u |  1.8698292
                      sigma_e |  1.5170324
                          rho |  .60304815   (fraction of variance due to u_i)
-----------------------------------------------------------------------------------------------



                 ---- Coefficients ----
             |      (b)          (B)            (b-B)     sqrt(diag(V_b-V_B))
             |     fixed        random       Difference          S.E.
-------------+----------------------------------------------------------------
 1.flag_LPIS |   -.1776024    -.1541534        -.023449         .001819
bike_route~v |    .0269855     .1192156       -.0922301          .00995
flag_stree~v |    -.188277    -.1170945       -.0711825        .0096715
flag_left_~n |   -.7997689    -.7300794       -.0696895        .0047564
   quarterly |
        211  |   -.0272238    -.0276787        .0004549               .
        212  |   -.1437996    -.1442547         .000455               .
        213  |    .0952777     .0945363        .0007414               .
        214  |   -.0099912    -.0113427        .0013516               .
        215  |     .022502     .0206749        .0018271               .
        216  |   -.1372205    -.1390533        .0018328               .
        217  |    .0307486       .02834        .0024086               .
        218  |    .0002867     -.002686        .0029727               .
        219  |    .0133289     .0100903        .0032387               .
        220  |   -.1356572    -.1390465        .0033892               .
        221  |    .0523985      .048304        .0040944               .
        222  |     .091027     .0860629        .0049641               .
        223  |    .1410987     .1354114        .0056872               .
        224  |    -.087746      -.09367        .0059241               .
        225  |   -.4078028    -.4145354        .0067325               .
        226  |   -.6724283    -.6804901        .0080617               .
        227  |    -.645612    -.6549284        .0093164               .
        228  |   -.3490299    -.3586337        .0096038               .
        229  |   -.0729462     -.082869        .0099227               .
        230  |   -.3202074     -.330618        .0104107               .
        231  |   -.2129973    -.2239844         .010987               .
        232  |   -.2692511    -.2805337        .0112826               .
        233  |   -.1130946    -.1249192        .0118246               .
        234  |    -.254319    -.2666283        .0123093               .
 flag_school#|
   quarterly |
      1 211  |    .1182385     .1185995        -.000361               .
      1 212  |    .0835204     .0838836       -.0003631               .
      1 213  |    .1587193     .1585783         .000141               .
      1 214  |    .0459541     .0457841          .00017               .
      1 215  |     .002042     .0022981       -.0002561               .
      1 216  |      .11072     .1109854       -.0002653               .
      1 217  |     .002922     .0037165       -.0007946               .
      1 218  |    .0244281      .025724       -.0012959               .
      1 219  |    .0857961      .086111       -.0003149               .
      1 220  |     .139316     .1396194       -.0003035               .
      1 221  |    .0013831     .0015782       -.0001952               .
      1 222  |    .0060462     .0061572        -.000111               .
      1 223  |      .04823     .0463384        .0018916               .
      1 224  |     .034811     .0328414        .0019696               .
      1 225  |    .1373576     .1353045        .0020532               .
      1 226  |    .0759265     .0727752        .0031513               .
      1 227  |    .0679298     .0650766        .0028531               .
      1 228  |    .0303498     .0271244        .0032254               .
      1 229  |    .0271477     .0238744        .0032733               .
      1 230  |   -.0136784    -.0172748        .0035964               .
      1 231  |    .0550566     .0514199        .0036367               .
      1 232  |    .0484018     .0443731        .0040286               .
      1 233  |   -.0759146    -.0798382        .0039236               .
      1 234  |   -.0266903    -.0305681        .0038777               .
flag_prior~s#|
   quarterly |
      1 211  |   -.2768213     -.276322       -.0004993               .
      1 212  |   -.7644635    -.7639617       -.0005017               .
      1 213  |   -.3837691    -.3833331       -.0004361               .
      1 214  |   -.4429826    -.4422601       -.0007225               .
      1 215  |    .1814199     .1819049       -.0004851               .
      1 216  |   -1.046841    -1.046455       -.0003862               .
      1 217  |   -.5362038    -.5353093       -.0008944               .
      1 218  |   -.4022144    -.4016516       -.0005628               .
      1 219  |   -.3418119    -.3408967       -.0009151               .
      1 220  |     -1.0348    -1.033869       -.0009316               .
      1 221  |   -.5501796    -.5506984        .0005188               .
      1 222  |   -.1748565    -.1770761        .0022196               .
      1 223  |   -.4976802    -.4997098        .0020296               .
      1 224  |   -.8337732    -.8386023         .004829               .
      1 225  |   -1.754218    -1.760631        .0064128               .
      1 226  |   -2.291793    -2.298024        .0062302               .
      1 227  |   -2.182984    -2.194914        .0119293               .
      1 228  |   -1.663286     -1.67466        .0113738               .
      1 229  |   -1.526703    -1.538135        .0114314               .
      1 230  |   -1.726626    -1.739646        .0130192               .
      1 231  |   -1.390512    -1.404436        .0139238               .
      1 232  |   -1.702154    -1.715931        .0137773               .
      1 233  |   -1.436331    -1.449935        .0136042               .
      1 234  |   -1.569914    -1.583557        .0136435               .
flag_seniors#|
   quarterly |
      1 211  |    .0112276     .0110062        .0002214               .
      1 212  |   -.0483955     -.048626        .0002305               .
      1 213  |   -.0515704    -.0524068        .0008364               .
      1 214  |    .0694257     .0682189        .0012067               .
      1 215  |    .1013443     .1003762        .0009681               .
      1 216  |    .0360209      .035042        .0009789               .
      1 217  |    .0579079     .0571143        .0007936               .
      1 218  |    .0170646     .0159525        .0011122               .
      1 219  |    .0415852     .0386608        .0029244               .
      1 220  |   -.0611882    -.0640072         .002819               .
      1 221  |    .1250521     .1219444        .0031077               .
      1 222  |      .10313      .100077         .003053               .
      1 223  |    .0702699     .0662261        .0040439               .
      1 224  |   -.0735621    -.0774483        .0038862               .
      1 225  |   -.2103285    -.2140105         .003682               .
      1 226  |   -.1955049    -.2003621        .0048572               .
      1 227  |    -.156215    -.1626634        .0064484               .
      1 228  |   -.1819107     -.189337        .0074263               .
      1 229  |   -.1517847    -.1602261        .0084415               .
      1 230  |   -.0856614    -.0950636        .0094021               .
      1 231  |   -.2175487    -.2274059        .0098572               .
      1 232  |   -.2530286    -.2630807        .0100521               .
      1 233  |   -.1730564    -.1833399        .0102835               .
      1 234  |   -.2549443    -.2652927        .0103485               .
------------------------------------------------------------------------------
                           b = consistent under Ho and Ha; obtained from xtreg
            B = inconsistent under Ha, efficient under Ho; obtained from xtreg

    Test:  Ho:  difference in coefficients not systematic

                chi2(100) = (b-B)'[(V_b-V_B)^(-1)](b-B)
                          =      578.75
                Prob>chi2 =      0.0000
                (V_b-V_B is not positive definite)

Naive Regression estimates

[14]:
global outcome1 collision_count
global outcome2 latenight_$outcome1
global outcome3 day_$outcome1
global filename qt_results_naive_$outcome1
cd "..\manuscripts"
poisson $outcome1 i.flag_LPIS  $time_variant_var $time_var $time_trend, vce(cluster intersection_id )
outreg2 using "$filename", word replace ctitle(poisson cluster intersection_id $outcome1)
reg $outcome1 i.flag_LPIS  $time_variant_var $time_var $time_trend if e(sample)==1, vce(cluster intersection_id )
outreg2 using "$filename", word append ctitle(regress cluster intersection_id $outcome1)

poisson $outcome2 i.flag_LPIS  $time_variant_var $time_var $time_trend, vce(cluster intersection_id )
outreg2 using "$filename", word append ctitle(poisson cluster intersection_id $outcome2)
reg $outcome2 i.flag_LPIS  $time_variant_var $time_var $time_trend if e(sample)==1, vce(cluster intersection_id )
outreg2 using "$filename", word append ctitle(regress cluster intersection_id $outcome2)

poisson $outcome3 i.flag_LPIS  $time_variant_var $time_var $time_trend, vce(cluster intersection_id )
outreg2 using "$filename", word append ctitle(poisson cluster intersection_id $outcome3)
reg $outcome3 i.flag_LPIS  $time_variant_var $time_var $time_trend if e(sample)==1, vce(cluster intersection_id )
outreg2 using "$filename", word append ctitle(regress cluster intersection_id $outcome3)

erase $filename.txt





C:\Users\jerem\Box Sync\Policy Evaluation\manuscripts


Iteration 0:   log pseudolikelihood = -688576.31
Iteration 1:   log pseudolikelihood = -685106.58
Iteration 2:   log pseudolikelihood = -685083.59
Iteration 3:   log pseudolikelihood = -685083.58

Poisson regression                              Number of obs     =    324,675
                                                Wald chi2(103)    =    6332.01
                                                Prob > chi2       =     0.0000
Log pseudolikelihood = -685083.58               Pseudo R2         =     0.0407

                                    (Std. Err. adjusted for 12,987 clusters in intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
              collision_count |      Coef.   Std. Err.      z    P>|z|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |   .2578853   .0252799    10.20   0.000     .2083376    .3074331
                bike_route_tv |   .2393679   .0219261    10.92   0.000     .1963935    .2823422
           flag_street_improv |   .3344673   .0737285     4.54   0.000     .1899621    .4789724
               flag_left_turn |   .5186243   .0607865     8.53   0.000     .3994849    .6377636
                              |
                    quarterly |
                         211  |  -.0175376   .0113663    -1.54   0.123    -.0398151      .00474
                         212  |  -.0911822   .0115904    -7.87   0.000     -.113899   -.0684655
                         213  |   .0525733   .0111594     4.71   0.000     .0307013    .0744454
                         214  |  -.0099756   .0112076    -0.89   0.373    -.0319421    .0119908
                         215  |   .0082348   .0114581     0.72   0.472    -.0142228    .0306923
                         216  |   -.090977   .0120812    -7.53   0.000    -.1146557   -.0672983
                         217  |   .0105446   .0114864     0.92   0.359    -.0119684    .0330576
                         218  |  -.0094581   .0114816    -0.82   0.410    -.0319617    .0130454
                         219  |  -.0031848   .0116715    -0.27   0.785    -.0260604    .0196909
                         220  |  -.0984347   .0122972    -8.00   0.000    -.1225369   -.0743326
                         221  |   .0132302    .011914     1.11   0.267    -.0101208    .0365812
                         222  |   .0301377   .0116433     2.59   0.010     .0073173    .0529581
                         223  |   .0532035   .0117411     4.53   0.000     .0301913    .0762157
                         224  |  -.0855651   .0119593    -7.15   0.000     -.109005   -.0621252
                         225  |  -.3215356    .013437   -23.93   0.000    -.3478716   -.2951995
                         226  |   -.570995   .0148895   -38.35   0.000    -.6001779   -.5418121
                         227  |  -.5535095   .0153793   -35.99   0.000    -.5836524   -.5233667
                         228  |   -.302441    .015123   -20.00   0.000    -.3320816   -.2728005
                         229  |   -.116354   .0150084    -7.75   0.000      -.14577    -.086938
                         230  |   -.294069   .0158985   -18.50   0.000    -.3252294   -.2629086
                         231  |  -.2250372   .0160705   -14.00   0.000    -.2565349   -.1935395
                         232  |  -.2704885    .015892   -17.02   0.000    -.3016362   -.2393408
                         233  |  -.1716865   .0157216   -10.92   0.000    -.2025002   -.1408728
                         234  |  -.2765713   .0163467   -16.92   0.000    -.3086102   -.2445324
                              |
                1.flag_school |  -.1963539   .0473851    -4.14   0.000    -.2892271   -.1034808
                              |
        flag_school#quarterly |
                       1 211  |   .0743411   .0454053     1.64   0.102    -.0146516    .1633339
                       1 212  |   .0391086   .0459565     0.85   0.395    -.0509645    .1291817
                       1 213  |    .102837   .0442261     2.33   0.020     .0161555    .1895186
                       1 214  |   .0282483   .0454889     0.62   0.535    -.0609084     .117405
                       1 215  |   .0068996   .0464398     0.15   0.882    -.0841207    .0979199
                       1 216  |   .0588686   .0456164     1.29   0.197    -.0305379    .1482751
                       1 217  |   .0080265   .0506843     0.16   0.874    -.0913129     .107366
                       1 218  |   .0196431   .0433414     0.45   0.650    -.0653045    .1045907
                       1 219  |   .0567409   .0440607     1.29   0.198    -.0296164    .1430983
                       1 220  |    .076186   .0484461     1.57   0.116    -.0187667    .1711386
                       1 221  |   .0077476   .0456738     0.17   0.865    -.0817714    .0972665
                       1 222  |   .0129984   .0462899     0.28   0.779    -.0777282     .103725
                       1 223  |   .0352553    .044068     0.80   0.424    -.0511164    .1216269
                       1 224  |  -.0027105   .0456361    -0.06   0.953    -.0921556    .0867346
                       1 225  |   .0287904   .0539444     0.53   0.594    -.0769387    .1345195
                       1 226  |  -.1037011   .0623781    -1.66   0.096    -.2259599    .0185577
                       1 227  |  -.1052218   .0604571    -1.74   0.082    -.2237155     .013272
                       1 228  |  -.0794441   .0553634    -1.43   0.151    -.1879543    .0290661
                       1 229  |  -.0346964    .051122    -0.68   0.497    -.1348937    .0655008
                       1 230  |  -.1184121   .0542924    -2.18   0.029    -.2248233   -.0120009
                       1 231  |   -.045704   .0541296    -0.84   0.398    -.1517961    .0603881
                       1 232  |  -.0695674   .0517429    -1.34   0.179    -.1709816    .0318469
                       1 233  |  -.1386149   .0542429    -2.56   0.011    -.2449291   -.0323008
                       1 234  |   -.130966   .0508384    -2.58   0.010    -.2306074   -.0313245
                              |
        1.flag_priorityinters |   1.266259   .0614513    20.61   0.000     1.145817    1.386701
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.0341003   .0405373    -0.84   0.400    -.1135519    .0453513
                       1 212  |  -.0622749   .0423449    -1.47   0.141    -.1452694    .0207197
                       1 213  |  -.0934241   .0408478    -2.29   0.022    -.1734843   -.0133639
                       1 214  |  -.0727015   .0411817    -1.77   0.077    -.1534162    .0080132
                       1 215  |   .0071576   .0384629     0.19   0.852    -.0682283    .0825435
                       1 216  |  -.1307144   .0462858    -2.82   0.005    -.2214329    -.039996
                       1 217  |  -.1045854   .0455556    -2.30   0.022    -.1938727   -.0152981
                       1 218  |  -.0705215    .040836    -1.73   0.084    -.1505585    .0095156
                       1 219  |  -.0664762   .0454904    -1.46   0.144    -.1556359    .0226834
                       1 220  |  -.1177303    .048154    -2.44   0.014    -.2121104   -.0233502
                       1 221  |  -.1295838    .043027    -3.01   0.003    -.2139152   -.0452523
                       1 222  |   -.098307   .0428675    -2.29   0.022    -.1823257   -.0142882
                       1 223  |  -.1665637   .0430663    -3.87   0.000     -.250972   -.0821554
                       1 224  |  -.1605361    .048405    -3.32   0.001    -.2554082    -.065664
                       1 225  |  -.1999259   .0498962    -4.01   0.000    -.2977207   -.1021311
                       1 226  |  -.1890969   .0601256    -3.15   0.002    -.3069409    -.071253
                       1 227  |  -.2469045   .0656768    -3.76   0.000    -.3756286   -.1181803
                       1 228  |  -.2620017   .0624602    -4.19   0.000    -.3844214   -.1395819
                       1 229  |  -.3534235   .0608904    -5.80   0.000    -.4727665   -.2340805
                       1 230  |  -.3130428   .0642943    -4.87   0.000    -.4390573   -.1870283
                       1 231  |  -.2798254   .0685566    -4.08   0.000     -.414194   -.1454569
                       1 232  |  -.3157502   .0635667    -4.97   0.000    -.4403386   -.1911618
                       1 233  |  -.3272246   .0610652    -5.36   0.000    -.4469102   -.2075391
                       1 234  |  -.2830525   .0595268    -4.76   0.000    -.3997228   -.1663821
                              |
               1.flag_seniors |   .2742556    .028646     9.57   0.000     .2181105    .3304007
                              |
       flag_seniors#quarterly |
                       1 211  |   .0082162   .0218189     0.38   0.706    -.0345481    .0509805
                       1 212  |  -.0009197    .021729    -0.04   0.966    -.0435077    .0416682
                       1 213  |  -.0359071   .0221114    -1.62   0.104    -.0792446    .0074305
                       1 214  |    .029654   .0216778     1.37   0.171    -.0128336    .0721416
                       1 215  |   .0367673   .0217936     1.69   0.092    -.0059473    .0794819
                       1 216  |    .036225   .0227796     1.59   0.112    -.0084223    .0808723
                       1 217  |   .0188314   .0221813     0.85   0.396    -.0246433     .062306
                       1 218  |   .0043923   .0215483     0.20   0.838    -.0378417    .0466263
                       1 219  |   .0073623    .021806     0.34   0.736    -.0353766    .0501013
                       1 220  |  -.0147029   .0235176    -0.63   0.532    -.0607966    .0313907
                       1 221  |    .036681    .023465     1.56   0.118    -.0093096    .0826715
                       1 222  |   .0156428   .0236674     0.66   0.509    -.0307445    .0620301
                       1 223  |  -.0075929   .0245769    -0.31   0.757    -.0557627     .040577
                       1 224  |  -.0374449   .0233305    -1.60   0.108    -.0831718     .008282
                       1 225  |  -.0641164   .0262299    -2.44   0.015    -.1155262   -.0127067
                       1 226  |  -.0033673   .0288927    -0.12   0.907    -.0599959    .0532613
                       1 227  |   .0101581    .029846     0.34   0.734    -.0483391    .0686553
                       1 228  |  -.0813442   .0286655    -2.84   0.005    -.1375276   -.0251609
                       1 229  |  -.1164746   .0276352    -4.21   0.000    -.1706386   -.0623105
                       1 230  |  -.0580702   .0289832    -2.00   0.045    -.1148762   -.0012643
                       1 231  |  -.1551454   .0300065    -5.17   0.000     -.213957   -.0963337
                       1 232  |  -.1720856   .0304282    -5.66   0.000    -.2317237   -.1124475
                       1 233  |  -.1465707   .0288349    -5.08   0.000     -.203086   -.0900554
                       1 234  |  -.1774844   .0286761    -6.19   0.000    -.2336885   -.1212804
                              |
                        _cons |   .4695634   .0162412    28.91   0.000     .4377313    .5013956
-----------------------------------------------------------------------------------------------

qt_results_naive_collision_count.rtf
dir : seeout


Linear regression                               Number of obs     =    324,675
                                                F(103, 12986)     =      47.98
                                                Prob > F          =     0.0000
                                                R-squared         =     0.0627
                                                Root MSE          =     2.4239

                                    (Std. Err. adjusted for 12,987 clusters in intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
              collision_count |      Coef.   Std. Err.      t    P>|t|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |   .4465668   .0470017     9.50   0.000     .3544367    .5386969
                bike_route_tv |   .4211724   .0411806    10.23   0.000     .3404525    .5018924
           flag_street_improv |   .7074233   .1822488     3.88   0.000     .3501888    1.064658
               flag_left_turn |   1.185702   .1758022     6.74   0.000     .8411041      1.5303
                              |
                    quarterly |
                         211  |  -.0295871   .0192224    -1.54   0.124    -.0672658    .0080917
                         212  |  -.1461667   .0191086    -7.65   0.000    -.1836225    -.108711
                         213  |   .0913766   .0194905     4.69   0.000     .0531725    .1295808
                         214  |  -.0166805    .019036    -0.88   0.381    -.0539939    .0206329
                         215  |   .0133645   .0196575     0.68   0.497     -.025167     .051896
                         216  |  -.1465094   .0199255    -7.35   0.000    -.1855664   -.1074524
                         217  |   .0186163   .0197281     0.94   0.345    -.0200535    .0572862
                         218  |  -.0151778   .0195437    -0.78   0.437    -.0534863    .0231307
                         219  |  -.0048554   .0199401    -0.24   0.808    -.0439408    .0342301
                         220  |  -.1578498   .0202896    -7.78   0.000    -.1976204   -.1180792
                         221  |    .023671   .0205714     1.15   0.250    -.0166519    .0639939
                         222  |   .0536064   .0202664     2.65   0.008     .0138813    .0933314
                         223  |   .0961571   .0206992     4.65   0.000     .0555836    .1367305
                         224  |  -.1383634   .0198862    -6.96   0.000    -.1773433   -.0993835
                         225  |  -.4726814   .0203471   -23.23   0.000    -.5125646   -.4327981
                         226  |   -.755626   .0210836   -35.84   0.000     -.796953    -.714299
                         227  |  -.7422526   .0215969   -34.37   0.000    -.7845858   -.6999195
                         228  |  -.4529158   .0234012   -19.35   0.000    -.4987856    -.407046
                         229  |  -.1848681   .0245462    -7.53   0.000    -.2329823    -.136754
                         230  |  -.4437689    .024262   -18.29   0.000    -.4913259   -.3962119
                         231  |  -.3493721   .0251591   -13.89   0.000    -.3986876   -.3000565
                         232  |  -.4133919   .0246653   -16.76   0.000    -.4617394   -.3650443
                         233  |  -.2711755   .0251282   -10.79   0.000    -.3204305   -.2219204
                         234  |  -.4242131    .025261   -16.79   0.000    -.4737283   -.3746979
                              |
                1.flag_school |  -.3321942   .0728312    -4.56   0.000     -.474954   -.1894344
                              |
        flag_school#quarterly |
                       1 211  |   .1201107    .071763     1.67   0.094    -.0205552    .2607767
                       1 212  |    .085449    .068211     1.25   0.210    -.0482546    .2191527
                       1 213  |   .1579183   .0728638     2.17   0.030     .0150945    .3007421
                       1 214  |   .0444305   .0706395     0.63   0.529    -.0940333    .1828943
                       1 215  |    .002986   .0720739     0.04   0.967    -.1382894    .1442614
                       1 216  |   .1119099   .0689266     1.62   0.104    -.0231964    .2470162
                       1 217  |   .0072744   .0785026     0.09   0.926    -.1466023     .161151
                       1 218  |   .0318909   .0667479     0.48   0.633    -.0989448    .1627267
                       1 219  |   .0878698   .0696917     1.26   0.207    -.0487362    .2244758
                       1 220  |   .1410854   .0734546     1.92   0.055    -.0028964    .2850672
                       1 221  |   .0006592   .0716847     0.01   0.993    -.1398533    .1411718
                       1 222  |   .0027865   .0735463     0.04   0.970     -.141375    .1469481
                       1 223  |   .0351725   .0721176     0.49   0.626    -.1061886    .1765336
                       1 224  |   .0206812   .0677081     0.31   0.760    -.1120366     .153399
                       1 225  |   .1197462   .0726915     1.65   0.100    -.0227398    .2622321
                       1 226  |   .0372649    .073339     0.51   0.611    -.1064903      .18102
                       1 227  |   .0268749    .071454     0.38   0.707    -.1131855    .1669352
                       1 228  |  -.0209324   .0739538    -0.28   0.777    -.1658927    .1240278
                       1 229  |  -.0257639   .0747625    -0.34   0.730    -.1723092    .1207815
                       1 230  |  -.0744003   .0729638    -1.02   0.308      -.21742    .0686195
                       1 231  |  -.0071523   .0749014    -0.10   0.924    -.1539701    .1396655
                       1 232  |  -.0243195   .0714981    -0.34   0.734    -.1644662    .1158272
                       1 233  |  -.1463863   .0755799    -1.94   0.053     -.294534    .0017613
                       1 234  |  -.0942595   .0681849    -1.38   0.167    -.2279118    .0393928
                              |
        1.flag_priorityinters |   4.656948   .3919617    11.88   0.000     3.888645     5.42525
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.2743826    .249716    -1.10   0.272    -.7638625    .2150973
                       1 212  |  -.7619597   .2548665    -2.99   0.003    -1.261535    -.262384
                       1 213  |  -.3836493   .2501992    -1.53   0.125    -.8740765    .1067779
                       1 214  |   -.441438   .2498815    -1.77   0.077    -.9312424    .0483663
                       1 215  |   .1777724   .2450309     0.73   0.468    -.3025241     .658069
                       1 216  |  -1.053121     .27511    -3.83   0.000    -1.592377    -.513865
                       1 217  |   -.539332   .2765782    -1.95   0.051    -1.081466    .0028018
                       1 218  |  -.4133979   .2518765    -1.64   0.101    -.9071128     .080317
                       1 219  |  -.3494527   .2835952    -1.23   0.218     -.905341    .2064355
                       1 220  |  -1.042002   .2936721    -3.55   0.000    -1.617642   -.4663616
                       1 221  |   -.571789   .2592801    -2.21   0.027    -1.080016   -.0635619
                       1 222  |  -.2303015   .2683443    -0.86   0.391    -.7562957    .2956927
                       1 223  |  -.5573446   .2593647    -2.15   0.032    -1.065737   -.0489517
                       1 224  |  -.9684413   .2861348    -3.38   0.001    -1.529308   -.4075751
                       1 225  |  -1.913467   .2825815    -6.77   0.000    -2.467368   -1.359565
                       1 226  |  -2.456547   .3167607    -7.76   0.000    -3.077445    -1.83565
                       1 227  |  -2.488403   .3278653    -7.59   0.000    -3.131067   -1.845739
                       1 228  |  -1.954212   .3342412    -5.85   0.000    -2.609374    -1.29905
                       1 229  |   -1.81949   .3344775    -5.44   0.000    -2.475115   -1.163865
                       1 230  |  -2.066987   .3433859    -6.02   0.000    -2.740073     -1.3939
                       1 231  |   -1.75477   .3622792    -4.84   0.000     -2.46489   -1.044649
                       1 232  |  -2.062587   .3454255    -5.97   0.000    -2.739671   -1.385502
                       1 233  |  -1.793304   .3324913    -5.39   0.000    -2.445036   -1.141572
                       1 234  |  -1.924698   .3248477    -5.92   0.000    -2.561447   -1.287949
                              |
               1.flag_seniors |   .5491379   .0619118     8.87   0.000     .4277818    .6704941
                              |
       flag_seniors#quarterly |
                       1 211  |   .0106749   .0470188     0.23   0.820    -.0814889    .1028387
                       1 212  |  -.0491913   .0451315    -1.09   0.276    -.1376556    .0392729
                       1 213  |   -.054796   .0486588    -1.13   0.260    -.1501744    .0405824
                       1 214  |   .0646244   .0474466     1.36   0.173    -.0283778    .1576266
                       1 215  |   .0967353   .0483173     2.00   0.045     .0020262    .1914443
                       1 216  |   .0311227   .0478893     0.65   0.516    -.0627474    .1249928
                       1 217  |   .0513816   .0487467     1.05   0.292     -.044169    .1469322
                       1 218  |   .0093235    .046506     0.20   0.841    -.0818351    .1004822
                       1 219  |   .0245234   .0473942     0.52   0.605    -.0683763     .117423
                       1 220  |  -.0754455   .0488466    -1.54   0.122     -.171192     .020301
                       1 221  |   .1065833   .0526926     2.02   0.043      .003298    .2098686
                       1 222  |   .0765174   .0536645     1.43   0.154    -.0286729    .1817077
                       1 223  |   .0368115   .0562603     0.65   0.513    -.0734669    .1470899
                       1 224  |  -.1035003   .0485935    -2.13   0.033    -.1987506   -.0082499
                       1 225  |  -.2425244   .0499174    -4.86   0.000    -.3403698   -.1446789
                       1 226  |   -.234475   .0511687    -4.58   0.000    -.3347731   -.1341768
                       1 227  |  -.2101293   .0531442    -3.95   0.000    -.3142998   -.1059589
                       1 228  |  -.2622351   .0553888    -4.73   0.000    -.3708053   -.1536648
                       1 229  |  -.2595566   .0562734    -4.61   0.000    -.3698606   -.1492525
                       1 230  |  -.2176332   .0562721    -3.87   0.000    -.3279349   -.1073316
                       1 231  |   -.361329   .0584847    -6.18   0.000    -.4759676   -.2466904
                       1 232  |  -.4020924   .0583604    -6.89   0.000    -.5164874   -.2876974
                       1 233  |  -.3279524   .0569007    -5.76   0.000     -.439486   -.2164187
                       1 234  |  -.4108844   .0552922    -7.43   0.000    -.5192652   -.3025037
                              |
                        _cons |   1.597432   .0268817    59.42   0.000      1.54474    1.650124
-----------------------------------------------------------------------------------------------

qt_results_naive_collision_count.rtf
dir : seeout


Iteration 0:   log pseudolikelihood = -155863.31
Iteration 1:   log pseudolikelihood = -155109.33
Iteration 2:   log pseudolikelihood = -155094.72
Iteration 3:   log pseudolikelihood = -155094.65
Iteration 4:   log pseudolikelihood = -155094.65

Poisson regression                              Number of obs     =    324,675
                                                Wald chi2(103)    =    1629.26
                                                Prob > chi2       =     0.0000
Log pseudolikelihood = -155094.65               Pseudo R2         =     0.0215

                                    (Std. Err. adjusted for 12,987 clusters in intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
    latenight_collision_count |      Coef.   Std. Err.      z    P>|z|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |   .3089126   .0383462     8.06   0.000     .2337554    .3840699
                bike_route_tv |   .3618864   .0300816    12.03   0.000     .3029275    .4208454
           flag_street_improv |    .357327   .0890199     4.01   0.000     .1828511    .5318028
               flag_left_turn |   .4485009   .1097145     4.09   0.000     .2334644    .6635375
                              |
                    quarterly |
                         211  |  -.0978258   .0347892    -2.81   0.005    -.1660113   -.0296403
                         212  |  -.2373744   .0356138    -6.67   0.000    -.3071761   -.1675728
                         213  |  -.0715058   .0343735    -2.08   0.038    -.1388766   -.0041349
                         214  |  -.0770944   .0338475    -2.28   0.023    -.1434344   -.0107545
                         215  |  -.1356271    .034674    -3.91   0.000    -.2035868   -.0676673
                         216  |  -.2957857    .036758    -8.05   0.000    -.3678301   -.2237413
                         217  |  -.1161483   .0344957    -3.37   0.001    -.1837587   -.0485379
                         218  |  -.0993713   .0346337    -2.87   0.004    -.1672521   -.0314904
                         219  |   -.083574   .0351483    -2.38   0.017    -.1524634   -.0146845
                         220  |  -.3246156   .0371158    -8.75   0.000    -.3973611     -.25187
                         221  |   -.090131   .0343582    -2.62   0.009    -.1574718   -.0227902
                         222  |  -.0547505   .0343794    -1.59   0.111    -.1221328    .0126319
                         223  |  -.0898229   .0351417    -2.56   0.011    -.1586994   -.0209464
                         224  |  -.2138349   .0360004    -5.94   0.000    -.2843944   -.1432755
                         225  |  -.3767557   .0375582   -10.03   0.000    -.4503685    -.303143
                         226  |  -.5036742   .0388724   -12.96   0.000    -.5798626   -.4274858
                         227  |  -.5234364   .0398876   -13.12   0.000    -.6016147   -.4452582
                         228  |  -.3480619   .0374992    -9.28   0.000     -.421559   -.2745647
                         229  |  -.1279001   .0361292    -3.54   0.000    -.1987121   -.0570881
                         230  |  -.3023982   .0384562    -7.86   0.000     -.377771   -.2270254
                         231  |  -.2553909   .0377717    -6.76   0.000    -.3294221   -.1813598
                         232  |  -.2933738   .0376671    -7.79   0.000    -.3671999   -.2195477
                         233  |  -.2062234   .0374903    -5.50   0.000    -.2797029   -.1327438
                         234  |  -.2430058   .0382711    -6.35   0.000    -.3180158   -.1679959
                              |
                1.flag_school |   -.163425   .1067194    -1.53   0.126    -.3725912    .0457412
                              |
        flag_school#quarterly |
                       1 211  |  -.1186562   .1422087    -0.83   0.404    -.3973802    .1600678
                       1 212  |   .0231226   .1490428     0.16   0.877     -.268996    .3152412
                       1 213  |  -.0138497   .1429266    -0.10   0.923    -.2939806    .2662812
                       1 214  |   -.074629   .1497089    -0.50   0.618    -.3680531    .2187951
                       1 215  |  -.2696667   .1524186    -1.77   0.077    -.5684017    .0290683
                       1 216  |  -.1720868   .1579815    -1.09   0.276    -.4817249    .1375512
                       1 217  |  -.0582861   .1423613    -0.41   0.682    -.3373091     .220737
                       1 218  |  -.0693908   .1386753    -0.50   0.617    -.3411893    .2024077
                       1 219  |  -.0023172   .1370359    -0.02   0.987    -.2709027    .2662683
                       1 220  |  -.1174589   .1501365    -0.78   0.434     -.411721    .1768032
                       1 221  |   .0117033    .138715     0.08   0.933    -.2601732    .2835797
                       1 222  |  -.1183195   .1379384    -0.86   0.391    -.3886737    .1520347
                       1 223  |  -.0379055   .1453748    -0.26   0.794     -.322835     .247024
                       1 224  |  -.2601462   .1670144    -1.56   0.119    -.5874884    .0671961
                       1 225  |  -.0502056   .1538724    -0.33   0.744    -.3517899    .2513787
                       1 226  |  -.1182979   .1579331    -0.75   0.454    -.4278412    .1912453
                       1 227  |  -.1368617   .1654197    -0.83   0.408    -.4610784    .1873549
                       1 228  |  -.4391845   .1769747    -2.48   0.013    -.7860485   -.0923204
                       1 229  |  -.2104935   .1567847    -1.34   0.179    -.5177858    .0967989
                       1 230  |  -.3827546   .1563659    -2.45   0.014    -.6892262   -.0762831
                       1 231  |   .1067591   .1342415     0.80   0.426    -.1563494    .3698675
                       1 232  |  -.2871757    .157014    -1.83   0.067    -.5949176    .0205661
                       1 233  |  -.4340289   .1554405    -2.79   0.005    -.7386867    -.129371
                       1 234  |  -.0734989   .1463587    -0.50   0.616    -.3603567     .213359
                              |
        1.flag_priorityinters |   1.365193   .1184357    11.53   0.000     1.133064    1.597323
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.0789371    .130009    -0.61   0.544      -.33375    .1758758
                       1 212  |   .0388241   .1251089     0.31   0.756    -.2063849     .284033
                       1 213  |  -.0646818   .1210788    -0.53   0.593    -.3019919    .1726282
                       1 214  |  -.1570936   .1285673    -1.22   0.222    -.4090808    .0948936
                       1 215  |    .017689     .11326     0.16   0.876    -.2042966    .2396746
                       1 216  |  -.2150936   .1387446    -1.55   0.121    -.4870281    .0568408
                       1 217  |  -.2738897   .1435658    -1.91   0.056    -.5552734    .0074941
                       1 218  |  -.0226364   .1204505    -0.19   0.851    -.2587149    .2134422
                       1 219  |   .0068932   .1233678     0.06   0.955    -.2349032    .2486897
                       1 220  |   -.173965   .1412385    -1.23   0.218    -.4507874    .1028574
                       1 221  |  -.1438035   .1258435    -1.14   0.253    -.3904521    .1028452
                       1 222  |   .0557275   .1179556     0.47   0.637    -.1754613    .2869163
                       1 223  |  -.2822275   .1281195    -2.20   0.028    -.5333372   -.0311178
                       1 224  |  -.2222683   .1353139    -1.64   0.100    -.4874787    .0429421
                       1 225  |   -.284931   .1412448    -2.02   0.044    -.5617657   -.0080963
                       1 226  |  -.3007284   .1371884    -2.19   0.028    -.5696128   -.0318441
                       1 227  |   -.468184   .1452445    -3.22   0.001     -.752858   -.1835099
                       1 228  |  -.3601455   .1424776    -2.53   0.011    -.6393965   -.0808946
                       1 229  |  -.3547464   .1356159    -2.62   0.009    -.6205486   -.0889442
                       1 230  |  -.1972457   .1463782    -1.35   0.178    -.4841417    .0896504
                       1 231  |  -.5294433   .1344291    -3.94   0.000    -.7929195    -.265967
                       1 232  |   -.434823   .1390162    -3.13   0.002    -.7072898   -.1623562
                       1 233  |  -.5481655   .1453042    -3.77   0.000    -.8329565   -.2633745
                       1 234  |  -.4887477   .1492196    -3.28   0.001    -.7812128   -.1962825
                              |
               1.flag_seniors |   .2383972   .0558333     4.27   0.000     .1289659    .3478284
                              |
       flag_seniors#quarterly |
                       1 211  |   .0623154   .0703062     0.89   0.375    -.0754823     .200113
                       1 212  |   .1169757   .0705655     1.66   0.097    -.0213301    .2552814
                       1 213  |  -.0166609   .0694599    -0.24   0.810    -.1527998    .1194779
                       1 214  |   .1527986    .066651     2.29   0.022      .022165    .2834321
                       1 215  |   .0777975   .0697934     1.11   0.265    -.0589951    .2145901
                       1 216  |   .0356543   .0725712     0.49   0.623    -.1065826    .1778912
                       1 217  |   .0621057   .0681697     0.91   0.362    -.0715044    .1957159
                       1 218  |  -.0408602   .0739119    -0.55   0.580    -.1857249    .1040046
                       1 219  |   -.002145   .0710382    -0.03   0.976    -.1413774    .1370873
                       1 220  |   .1450055    .071191     2.04   0.042     .0054738    .2845372
                       1 221  |  -.0005755   .0715636    -0.01   0.994    -.1408375    .1396865
                       1 222  |    .096926   .0692365     1.40   0.162    -.0387751     .232627
                       1 223  |     .10044   .0697305     1.44   0.150    -.0362292    .2371092
                       1 224  |  -.0227616   .0694881    -0.33   0.743    -.1589557    .1134326
                       1 225  |  -.0214758   .0764536    -0.28   0.779     -.171322    .1283705
                       1 226  |   .1829365   .0798726     2.29   0.022     .0263891    .3394839
                       1 227  |   .1440356   .0779745     1.85   0.065    -.0087917    .2968628
                       1 228  |  -.0023091   .0764789    -0.03   0.976     -.152205    .1475868
                       1 229  |  -.0380233    .073532    -0.52   0.605    -.1821434    .1060967
                       1 230  |   .0728883   .0758845     0.96   0.337    -.0758425    .2216191
                       1 231  |  -.0966671   .0745594    -1.30   0.195    -.2428009    .0494667
                       1 232  |  -.1171622   .0768104    -1.53   0.127    -.2677079    .0333835
                       1 233  |  -.1350173   .0777006    -1.74   0.082    -.2873076    .0172731
                       1 234  |  -.2307329   .0760485    -3.03   0.002    -.3797851   -.0816807
                              |
                        _cons |  -1.820906   .0296459   -61.42   0.000    -1.879011   -1.762801
-----------------------------------------------------------------------------------------------

qt_results_naive_collision_count.rtf
dir : seeout


Linear regression                               Number of obs     =    324,675
                                                F(103, 12986)     =      10.94
                                                Prob > F          =     0.0000
                                                R-squared         =     0.0195
                                                Root MSE          =     .48388

                                    (Std. Err. adjusted for 12,987 clusters in intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
    latenight_collision_count |      Coef.   Std. Err.      t    P>|t|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |   .0568333   .0076871     7.39   0.000     .0417654    .0719012
                bike_route_tv |   .0644135   .0059442    10.84   0.000     .0527619    .0760651
           flag_street_improv |   .0772177   .0224071     3.45   0.001     .0332965    .1211388
               flag_left_turn |   .1061206   .0326531     3.25   0.001     .0421157    .1701255
                              |
                    quarterly |
                         211  |  -.0162739   .0058881    -2.76   0.006    -.0278155   -.0047323
                         212  |   -.037219   .0056621    -6.57   0.000    -.0483176   -.0261204
                         213  |  -.0119685   .0058936    -2.03   0.042    -.0235208   -.0004162
                         214  |  -.0130455   .0058063    -2.25   0.025    -.0244268   -.0016642
                         215  |  -.0222067   .0057915    -3.83   0.000    -.0335588   -.0108545
                         216  |  -.0448357   .0056809    -7.89   0.000    -.0559711   -.0337003
                         217  |  -.0190969   .0058097    -3.29   0.001    -.0304847   -.0077091
                         218  |  -.0164086   .0059036    -2.78   0.005    -.0279805   -.0048367
                         219  |  -.0139755    .006034    -2.32   0.021    -.0258031    -.002148
                         220  |  -.0490404   .0057193    -8.57   0.000     -.060251   -.0378298
                         221  |  -.0150342   .0058959    -2.55   0.011    -.0265911   -.0034774
                         222  |  -.0094243   .0060297    -1.56   0.118    -.0212433    .0023948
                         223  |  -.0150318   .0060539    -2.48   0.013    -.0268984   -.0031652
                         224  |  -.0341207    .005852    -5.83   0.000    -.0455915   -.0226499
                         225  |  -.0564933   .0056801    -9.95   0.000    -.0676272   -.0453595
                         226  |  -.0721416   .0056467   -12.78   0.000    -.0832099   -.0610733
                         227  |  -.0746358   .0057114   -13.07   0.000     -.085831   -.0634407
                         228  |  -.0533571   .0058728    -9.09   0.000    -.0648687   -.0418455
                         229  |  -.0208444   .0061976    -3.36   0.001    -.0329927   -.0086962
                         230  |  -.0475643   .0060994    -7.80   0.000      -.05952   -.0356085
                         231  |  -.0409039   .0061443    -6.66   0.000    -.0529477   -.0288601
                         232  |  -.0463132   .0060278    -7.68   0.000    -.0581285   -.0344979
                         233  |  -.0333643   .0062294    -5.36   0.000    -.0455747   -.0211538
                         234  |  -.0391641   .0062821    -6.23   0.000     -.051478   -.0268502
                              |
                1.flag_school |  -.0292412   .0174378    -1.68   0.094    -.0634219    .0049394
                              |
        flag_school#quarterly |
                       1 211  |  -.0141757   .0210564    -0.67   0.501    -.0554494    .0270979
                       1 212  |   .0085299   .0221829     0.38   0.701    -.0349519    .0520116
                       1 213  |   .0003321   .0223147     0.01   0.988    -.0434079    .0440721
                       1 214  |    -.01006   .0229523    -0.44   0.661    -.0550498    .0349298
                       1 215  |  -.0312011    .020699    -1.51   0.132    -.0717741    .0093719
                       1 216  |  -.0114127    .020787    -0.55   0.583    -.0521582    .0293329
                       1 217  |  -.0051004   .0214557    -0.24   0.812    -.0471568    .0369559
                       1 218  |   -.006676   .0208211    -0.32   0.748    -.0474883    .0341363
                       1 219  |   .0018317    .021637     0.08   0.933    -.0405799    .0442434
                       1 220  |  -.0061978   .0204224    -0.30   0.762    -.0462286     .033833
                       1 221  |   .0040152   .0219621     0.18   0.855    -.0390338    .0470643
                       1 222  |   -.018479   .0213708    -0.86   0.387    -.0603689    .0234109
                       1 223  |  -.0045744   .0228569    -0.20   0.841    -.0493773    .0402285
                       1 224  |  -.0259773   .0217622    -1.19   0.233    -.0686343    .0166798
                       1 225  |   .0026474   .0209845     0.13   0.900    -.0384854    .0437802
                       1 226  |  -.0038142   .0205459    -0.19   0.853    -.0440871    .0364586
                       1 227  |  -.0048485   .0205044    -0.24   0.813    -.0450402    .0353432
                       1 228  |  -.0387781   .0205564    -1.89   0.059    -.0790717    .0015155
                       1 229  |  -.0286354   .0226892    -1.26   0.207    -.0731095    .0158387
                       1 230  |  -.0400381   .0200099    -2.00   0.045    -.0792604   -.0008158
                       1 231  |   .0199824   .0213469     0.94   0.349    -.0218607    .0618255
                       1 232  |  -.0287897   .0206185    -1.40   0.163    -.0692051    .0116257
                       1 233  |  -.0483553   .0200236    -2.41   0.016    -.0876046   -.0091061
                       1 234  |  -.0056693   .0214165    -0.26   0.791    -.0476488    .0363102
                              |
        1.flag_priorityinters |   .5510755   .0864333     6.38   0.000     .3816536    .7204973
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.0950482   .0877803    -1.08   0.279    -.2671105    .0770141
                       1 212  |  -.0760901   .0855034    -0.89   0.374    -.2436892    .0915091
                       1 213  |   -.082729   .0817969    -1.01   0.312    -.2430629    .0776049
                       1 214  |   -.118924   .0852504    -1.39   0.163    -.2860273    .0481793
                       1 215  |  -.0449786   .0783648    -0.57   0.566    -.1985851    .1086279
                       1 216  |   -.242683    .084433    -2.87   0.004    -.4081841    -.077182
                       1 217  |  -.2083462   .0882521    -2.36   0.018    -.3813332   -.0353591
                       1 218  |  -.0653841   .0830864    -0.79   0.431    -.2282455    .0974774
                       1 219  |  -.0297586   .0870569    -0.34   0.732    -.2004028    .1408857
                       1 220  |  -.2180781   .0862302    -2.53   0.011    -.3871018   -.0490543
                       1 221  |  -.1227711   .0844047    -1.45   0.146    -.2882168    .0426745
                       1 222  |   .0666436   .0878141     0.76   0.448    -.1054848     .238772
                       1 223  |  -.1754033   .0824708    -2.13   0.033    -.3370581   -.0137484
                       1 224  |  -.1906698   .0853774    -2.23   0.026    -.3580221   -.0233175
                       1 225  |  -.2673676   .0829418    -3.22   0.001    -.4299456   -.1047896
                       1 226  |  -.2886341   .0809685    -3.56   0.000    -.4473443   -.1299239
                       1 227  |  -.3465682   .0816709    -4.24   0.000    -.5066551   -.1864812
                       1 228  |  -.2709326    .086553    -3.13   0.002    -.4405892   -.1012759
                       1 229  |  -.1922184   .0861075    -2.23   0.026    -.3610018    -.023435
                       1 230  |  -.1545331   .0945427    -1.63   0.102    -.3398507    .0307845
                       1 231  |  -.3132094   .0825572    -3.79   0.000    -.4750336   -.1513851
                       1 232  |  -.2869057   .0840823    -3.41   0.001    -.4517194   -.1220919
                       1 233  |  -.3133875   .0879166    -3.56   0.000    -.4857168   -.1410581
                       1 234  |  -.3009024   .0874667    -3.44   0.001    -.4723501   -.1294548
                              |
               1.flag_seniors |   .0488208   .0122858     3.97   0.000     .0247388    .0729028
                              |
       flag_seniors#quarterly |
                       1 211  |   .0086483   .0150868     0.57   0.566    -.0209242    .0382207
                       1 212  |   .0130958   .0146011     0.90   0.370    -.0155245     .041716
                       1 213  |  -.0067572   .0146756    -0.46   0.645    -.0355236    .0220092
                       1 214  |   .0315112   .0150888     2.09   0.037      .001935    .0610874
                       1 215  |   .0105166   .0149166     0.71   0.481    -.0187222    .0397553
                       1 216  |  -.0063626    .013987    -0.45   0.649    -.0337792    .0210539
                       1 217  |   .0075484   .0144515     0.52   0.601    -.0207786    .0358754
                       1 218  |  -.0124539   .0153476    -0.81   0.417    -.0425375    .0176297
                       1 219  |  -.0031083   .0152005    -0.20   0.838    -.0329035    .0266869
                       1 220  |   .0131827   .0142441     0.93   0.355    -.0147378    .0411031
                       1 221  |  -.0029481   .0153286    -0.19   0.847    -.0329944    .0270981
                       1 222  |   .0238004   .0160014     1.49   0.137    -.0075646    .0551654
                       1 223  |   .0212913    .015638     1.36   0.173    -.0093614    .0519441
                       1 224  |  -.0119768     .01376    -0.87   0.384    -.0389484    .0149949
                       1 225  |  -.0172294   .0139838    -1.23   0.218    -.0446397    .0101809
                       1 226  |   .0119099   .0151563     0.79   0.432    -.0177986    .0416184
                       1 227  |   .0038371    .014484     0.26   0.791    -.0245536    .0322277
                       1 228  |  -.0128789   .0147927    -0.87   0.384    -.0418747    .0161169
                       1 229  |  -.0090338   .0157257    -0.57   0.566    -.0398584    .0217908
                       1 230  |    .005453   .0156968     0.35   0.728     -.025315     .036221
                       1 231  |  -.0253325   .0148269    -1.71   0.088    -.0543955    .0037304
                       1 232  |  -.0305846   .0149157    -2.05   0.040    -.0598216   -.0013477
                       1 233  |  -.0313339   .0154417    -2.03   0.042     -.061602   -.0010659
                       1 234  |  -.0488155   .0145382    -3.36   0.001    -.0773124   -.0203185
                              |
                        _cons |   .1626016   .0051435    31.61   0.000     .1525195    .1726837
-----------------------------------------------------------------------------------------------

qt_results_naive_collision_count.rtf
dir : seeout


Iteration 0:   log pseudolikelihood = -643424.39
Iteration 1:   log pseudolikelihood = -640471.19
Iteration 2:   log pseudolikelihood = -640450.06
Iteration 3:   log pseudolikelihood = -640450.04

Poisson regression                              Number of obs     =    324,675
                                                Wald chi2(103)    =    6280.80
                                                Prob > chi2       =     0.0000
Log pseudolikelihood = -640450.04               Pseudo R2         =     0.0390

                                    (Std. Err. adjusted for 12,987 clusters in intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
          day_collision_count |      Coef.   Std. Err.      z    P>|z|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |   .2518354   .0249937    10.08   0.000     .2028486    .3008222
                bike_route_tv |   .2256303   .0216237    10.43   0.000     .1832487     .268012
           flag_street_improv |   .3319136   .0738284     4.50   0.000     .1872127    .4766146
               flag_left_turn |   .5265988   .0587228     8.97   0.000     .4115042    .6416935
                              |
                    quarterly |
                         211  |  -.0085995    .011974    -0.72   0.473    -.0320682    .0148691
                         212  |  -.0754444    .012116    -6.23   0.000    -.0991913   -.0516975
                         213  |    .066062    .011752     5.62   0.000     .0430285    .0890955
                         214  |   -.002452   .0117498    -0.21   0.835    -.0254811    .0205771
                         215  |   .0237226   .0120643     1.97   0.049     .0000769    .0473682
                         216  |  -.0696146   .0125998    -5.53   0.000    -.0943098   -.0449194
                         217  |    .024321   .0120461     2.02   0.043     .0007111    .0479309
                         218  |   .0004937   .0119323     0.04   0.967    -.0228931    .0238805
                         219  |   .0057591   .0121297     0.47   0.635    -.0180147    .0295328
                         220  |  -.0750789    .012769    -5.88   0.000    -.1001057   -.0500521
                         221  |   .0246157    .012401     1.98   0.047     .0003103    .0489212
                         222  |   .0396108    .012177     3.25   0.001     .0157443    .0634774
                         223  |   .0686806   .0122588     5.60   0.000     .0446538    .0927075
                         224  |  -.0715708   .0124442    -5.75   0.000    -.0959611   -.0471806
                         225  |  -.3152922   .0139828   -22.55   0.000    -.3426979   -.2878865
                         226  |   -.579318   .0156039   -37.13   0.000     -.609901   -.5487349
                         227  |  -.5572338   .0159918   -34.84   0.000    -.5885772   -.5258905
                         228  |  -.2972889   .0155754   -19.09   0.000    -.3278162   -.2667616
                         229  |  -.1150928   .0154895    -7.43   0.000    -.1454516    -.084734
                         230  |  -.2931755   .0162258   -18.07   0.000    -.3249774   -.2613736
                         231  |  -.2215901   .0164393   -13.48   0.000    -.2538106   -.1893696
                         232  |   -.267911   .0163065   -16.43   0.000    -.2998711   -.2359509
                         233  |  -.1677464   .0161074   -10.41   0.000    -.1993164   -.1361764
                         234  |    -.28073   .0167228   -16.79   0.000    -.3135061    -.247954
                              |
                1.flag_school |  -.2002001   .0483153    -4.14   0.000    -.2948963   -.1055039
                              |
        flag_school#quarterly |
                       1 211  |   .0938683   .0477765     1.96   0.049     .0002281    .1875085
                       1 212  |   .0412169   .0478891     0.86   0.389    -.0526441    .1350779
                       1 213  |    .114778   .0467359     2.46   0.014     .0231773    .2063787
                       1 214  |   .0395619   .0471944     0.84   0.402    -.0529375    .1320613
                       1 215  |   .0320924   .0485725     0.66   0.509    -.0631081    .1272928
                       1 216  |   .0790524    .046911     1.69   0.092    -.0128915    .1709964
                       1 217  |   .0151659   .0522735     0.29   0.772    -.0872882      .11762
                       1 218  |   .0291003   .0463712     0.63   0.530    -.0617855    .1199861
                       1 219  |   .0633181   .0457794     1.38   0.167    -.0264078     .153044
                       1 220  |   .0939502   .0501577     1.87   0.061     -.004357    .1922575
                       1 221  |   .0077424   .0475733     0.16   0.871    -.0854996    .1009844
                       1 222  |   .0270706   .0486115     0.56   0.578    -.0682061    .1223473
                       1 223  |   .0431487   .0462615     0.93   0.351    -.0475222    .1338197
                       1 224  |   .0214583   .0467161     0.46   0.646    -.0701036    .1130202
                       1 225  |   .0376522   .0562166     0.67   0.503    -.0725304    .1478348
                       1 226  |  -.1025164   .0660131    -1.55   0.120    -.2318997    .0268668
                       1 227  |  -.1016172   .0639988    -1.59   0.112    -.2270526    .0238181
                       1 228  |  -.0440643   .0578148    -0.76   0.446    -.1573793    .0692506
                       1 229  |  -.0150257   .0531336    -0.28   0.777    -.1191657    .0891143
                       1 230  |  -.0894325   .0565137    -1.58   0.114    -.2001974    .0213323
                       1 231  |  -.0657074   .0581472    -1.13   0.258    -.1796739    .0482591
                       1 232  |  -.0461258   .0553013    -0.83   0.404    -.1545143    .0622627
                       1 233  |  -.1087261   .0568831    -1.91   0.056    -.2202149    .0027628
                       1 234  |  -.1386602   .0541175    -2.56   0.010    -.2447287   -.0325918
                              |
        1.flag_priorityinters |   1.254174    .059631    21.03   0.000     1.137299    1.371049
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.0279687   .0419523    -0.67   0.505    -.1101938    .0542564
                       1 212  |  -.0730381   .0441074    -1.66   0.098     -.159487    .0134108
                       1 213  |  -.0951348   .0420096    -2.26   0.024     -.177472   -.0127975
                       1 214  |  -.0622509   .0423304    -1.47   0.141     -.145217    .0207152
                       1 215  |   .0077445   .0411524     0.19   0.851    -.0729128    .0884017
                       1 216  |  -.1198995   .0478253    -2.51   0.012    -.2136354   -.0261636
                       1 217  |  -.0855788   .0462926    -1.85   0.065    -.1763105     .005153
                       1 218  |  -.0748339    .042524    -1.76   0.078    -.1581794    .0085116
                       1 219  |  -.0744151   .0475012    -1.57   0.117    -.1675157    .0186855
                       1 220  |  -.1097388   .0495374    -2.22   0.027    -.2068303   -.0126473
                       1 221  |  -.1265566   .0452578    -2.80   0.005    -.2152602   -.0378529
                       1 222  |  -.1181471   .0459664    -2.57   0.010    -.2082397   -.0280545
                       1 223  |  -.1526905   .0428633    -3.56   0.000     -.236701     -.06868
                       1 224  |  -.1521337   .0482929    -3.15   0.002    -.2467861   -.0574813
                       1 225  |  -.1893931   .0532058    -3.56   0.000    -.2936745   -.0851117
                       1 226  |  -.1755767   .0647463    -2.71   0.007    -.3024771   -.0486763
                       1 227  |  -.2201905     .06737    -3.27   0.001    -.3522332   -.0881477
                       1 228  |   -.249978   .0624701    -4.00   0.000    -.3724172   -.1275388
                       1 229  |  -.3538402   .0627562    -5.64   0.000    -.4768401   -.2308403
                       1 230  |  -.3309179   .0662448    -5.00   0.000    -.4607552   -.2010805
                       1 231  |  -.2513201   .0703737    -3.57   0.000    -.3892501   -.1133901
                       1 232  |  -.3013246   .0658088    -4.58   0.000    -.4303076   -.1723417
                       1 233  |   -.302068    .062178    -4.86   0.000    -.4239347   -.1802013
                       1 234  |  -.2587683   .0599163    -4.32   0.000     -.376202   -.1413346
                              |
               1.flag_seniors |   .2784043   .0289596     9.61   0.000     .2216445    .3351641
                              |
       flag_seniors#quarterly |
                       1 211  |   .0021151   .0230044     0.09   0.927    -.0429727    .0472029
                       1 212  |  -.0136998   .0230781    -0.59   0.553     -.058932    .0315325
                       1 213  |  -.0384024     .02338    -1.64   0.100    -.0842263    .0074215
                       1 214  |   .0156448   .0228757     0.68   0.494    -.0291908    .0604804
                       1 215  |   .0320798   .0229191     1.40   0.162    -.0128408    .0770005
                       1 216  |   .0353147   .0239094     1.48   0.140    -.0115469    .0821763
                       1 217  |   .0139083   .0231885     0.60   0.549    -.0315404     .059357
                       1 218  |   .0084897   .0227942     0.37   0.710     -.036186    .0531654
                       1 219  |   .0080124   .0227637     0.35   0.725    -.0366037    .0526286
                       1 220  |  -.0308778   .0246654    -1.25   0.211     -.079221    .0174654
                       1 221  |   .0399238    .024418     1.64   0.102    -.0079346    .0877822
                       1 222  |   .0064351   .0246748     0.26   0.794    -.0419266    .0547969
                       1 223  |  -.0192443   .0254992    -0.75   0.450    -.0692218    .0307332
                       1 224  |  -.0394419   .0245925    -1.60   0.109    -.0876424    .0087586
                       1 225  |  -.0690135   .0275619    -2.50   0.012    -.1230338   -.0149932
                       1 226  |  -.0285162    .030139    -0.95   0.344    -.0875875    .0305552
                       1 227  |  -.0066738   .0307144    -0.22   0.828    -.0668729    .0535253
                       1 228  |  -.0904213   .0292949    -3.09   0.002    -.1478383   -.0330043
                       1 229  |   -.125792   .0283916    -4.43   0.000    -.1814385   -.0701455
                       1 230  |  -.0742402   .0298128    -2.49   0.013    -.1326722   -.0158083
                       1 231  |   -.161994   .0308664    -5.25   0.000    -.2224911   -.1014969
                       1 232  |  -.1784732    .031148    -5.73   0.000    -.2395221   -.1174243
                       1 233  |  -.1479857   .0295595    -5.01   0.000    -.2059212   -.0900501
                       1 234  |  -.1711722   .0294589    -5.81   0.000    -.2289105   -.1134339
                              |
                        _cons |   .3626063   .0162487    22.32   0.000     .3307595    .3944532
-----------------------------------------------------------------------------------------------

qt_results_naive_collision_count.rtf
dir : seeout


Linear regression                               Number of obs     =    324,675
                                                F(103, 12986)     =      48.32
                                                Prob > F          =     0.0000
                                                R-squared         =     0.0612
                                                Root MSE          =     2.1989

                                    (Std. Err. adjusted for 12,987 clusters in intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
          day_collision_count |      Coef.   Std. Err.      t    P>|t|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |   .3897335   .0414992     9.39   0.000      .308389     .471078
                bike_route_tv |    .356759    .036349     9.81   0.000     .2855095    .4280084
           flag_street_improv |   .6302056    .163996     3.84   0.000     .3087494    .9516619
               flag_left_turn |   1.079582   .1518207     7.11   0.000     .7819908    1.377173
                              |
                    quarterly |
                         211  |  -.0133131    .018213    -0.73   0.465    -.0490132     .022387
                         212  |  -.1089477   .0179495    -6.07   0.000    -.1441313   -.0737641
                         213  |   .1033451   .0185109     5.58   0.000      .067061    .1396292
                         214  |   -.003635   .0179361    -0.20   0.839    -.0387923    .0315223
                         215  |   .0355712   .0186822     1.90   0.057    -.0010487     .072191
                         216  |  -.1016737   .0187208    -5.43   0.000    -.1383693   -.0649781
                         217  |   .0377132   .0186658     2.02   0.043     .0011256    .0743009
                         218  |   .0012308   .0182778     0.07   0.946    -.0345965     .037058
                         219  |   .0091202   .0186397     0.49   0.625    -.0274165    .0456568
                         220  |  -.1088094   .0189898    -5.73   0.000    -.1460322   -.0715866
                         221  |   .0387052    .019295     2.01   0.045     .0008843    .0765262
                         222  |   .0630306   .0190833     3.30   0.001     .0256247    .1004366
                         223  |   .1111889   .0195332     5.69   0.000     .0729009    .1494769
                         224  |  -.1042427    .018613    -5.60   0.000    -.1407269   -.0677586
                         225  |   -.416188   .0189041   -22.02   0.000    -.4532429   -.3791332
                         226  |  -.6834844   .0194355   -35.17   0.000    -.7215808    -.645388
                         227  |  -.6676168   .0198867   -33.57   0.000    -.7065977   -.6286359
                         228  |  -.3995587   .0214767   -18.60   0.000    -.4416562   -.3574612
                         229  |  -.1640237   .0226914    -7.23   0.000    -.2085021   -.1195453
                         230  |  -.3962046   .0221537   -17.88   0.000    -.4396291   -.3527801
                         231  |  -.3084682   .0230369   -13.39   0.000    -.3536239   -.2633125
                         232  |  -.3670787   .0226232   -16.23   0.000    -.4114234    -.322734
                         233  |  -.2378112    .023087   -10.30   0.000    -.2830651   -.1925573
                         234  |   -.385049   .0230756   -16.69   0.000    -.4302807   -.3398174
                              |
                1.flag_school |  -.3029529   .0662326    -4.57   0.000    -.4327785   -.1731274
                              |
        flag_school#quarterly |
                       1 211  |   .1342865   .0686067     1.96   0.050    -.0001928    .2687657
                       1 212  |   .0769191   .0639278     1.20   0.229    -.0483888     .202227
                       1 213  |   .1575862   .0698714     2.26   0.024     .0206281    .2945444
                       1 214  |   .0544905   .0660181     0.83   0.409    -.0749147    .1838957
                       1 215  |   .0341871   .0688223     0.50   0.619    -.1007146    .1690888
                       1 216  |   .1233225   .0644775     1.91   0.056    -.0030628    .2497079
                       1 217  |   .0123748   .0733477     0.17   0.866    -.1313974     .156147
                       1 218  |   .0385669   .0643878     0.60   0.549    -.0876427    .1647765
                       1 219  |   .0860381   .0652547     1.32   0.187    -.0418706    .2139468
                       1 220  |   .1472833   .0691479     2.13   0.033     .0117433    .2828232
                       1 221  |   -.003356   .0670334    -0.05   0.960    -.1347513    .1280393
                       1 222  |   .0212655   .0696968     0.31   0.760    -.1153504    .1578815
                       1 223  |   .0397468   .0680873     0.58   0.559    -.0937143     .173208
                       1 224  |   .0466585   .0630735     0.74   0.459    -.0769749    .1702918
                       1 225  |   .1170988   .0678525     1.73   0.084    -.0159021    .2500997
                       1 226  |   .0410791   .0681476     0.60   0.547    -.0925001    .1746583
                       1 227  |   .0317234   .0669032     0.47   0.635    -.0994168    .1628636
                       1 228  |   .0178457   .0695722     0.26   0.798    -.1185261    .1542175
                       1 229  |   .0028715   .0698167     0.04   0.967    -.1339794    .1397225
                       1 230  |  -.0343622   .0679955    -0.51   0.613    -.1676433    .0989189
                       1 231  |  -.0271347   .0707049    -0.38   0.701    -.1657266    .1114572
                       1 232  |   .0044702   .0683094     0.07   0.948    -.1294263    .1383667
                       1 233  |   -.098031   .0713878    -1.37   0.170    -.2379615    .0418995
                       1 234  |  -.0885903   .0639721    -1.38   0.166    -.2139849    .0368044
                              |
        1.flag_priorityinters |   4.105872   .3357925    12.23   0.000      3.44767    4.764075
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.1793344   .2295605    -0.78   0.435    -.6293066    .2706378
                       1 212  |  -.6858696   .2308814    -2.97   0.003    -1.138431   -.2333082
                       1 213  |  -.3009203   .2284103    -1.32   0.188     -.748638    .1467974
                       1 214  |   -.322514    .228589    -1.41   0.158    -.7705819    .1255539
                       1 215  |    .222751   .2352136     0.95   0.344    -.2383021    .6838042
                       1 216  |   -.810438   .2489927    -3.25   0.001      -1.2985   -.3223758
                       1 217  |  -.3309858   .2517203    -1.31   0.189    -.8243945    .1624228
                       1 218  |  -.3480138   .2310981    -1.51   0.132    -.8010001    .1049724
                       1 219  |  -.3196942   .2605894    -1.23   0.220    -.8304876    .1910992
                       1 220  |  -.8239239   .2648235    -3.11   0.002    -1.343017    -.304831
                       1 221  |  -.4490179   .2410821    -1.86   0.063    -.9215741    .0235383
                       1 222  |  -.2969451   .2534694    -1.17   0.241    -.7937824    .1998922
                       1 223  |  -.3819413   .2303415    -1.66   0.097    -.8334444    .0695617
                       1 224  |  -.7777716    .251094    -3.10   0.002    -1.269953   -.2855906
                       1 225  |  -1.646099   .2561725    -6.43   0.000    -2.148235   -1.143963
                       1 226  |  -2.167913    .283689    -7.64   0.000    -2.723985   -1.611841
                       1 227  |  -2.141834   .2896402    -7.39   0.000    -2.709572   -1.574097
                       1 228  |   -1.68328   .2910178    -5.78   0.000    -2.253717   -1.112842
                       1 229  |  -1.627272   .3015406    -5.40   0.000    -2.218336   -1.036208
                       1 230  |  -1.912454   .3057169    -6.26   0.000    -2.511703   -1.313204
                       1 231  |   -1.44156   .3267519    -4.41   0.000    -2.082042   -.8010786
                       1 232  |  -1.775681   .3088734    -5.75   0.000    -2.381118   -1.170244
                       1 233  |  -1.479917    .296056    -5.00   0.000     -2.06023   -.8996033
                       1 234  |  -1.623795   .2850206    -5.70   0.000    -2.182477   -1.065113
                              |
               1.flag_seniors |   .5003172    .056301     8.89   0.000     .3899589    .6106754
                              |
       flag_seniors#quarterly |
                       1 211  |   .0020267   .0446955     0.05   0.964     -.085583    .0896363
                       1 212  |  -.0622871   .0432252    -1.44   0.150    -.1470149    .0224407
                       1 213  |  -.0480387   .0465608    -1.03   0.302    -.1393048    .0432273
                       1 214  |   .0331132   .0448961     0.74   0.461    -.0548897    .1211161
                       1 215  |   .0862187   .0459088     1.88   0.060    -.0037692    .1762066
                       1 216  |   .0374854   .0456179     0.82   0.411    -.0519324    .1269031
                       1 217  |   .0438332   .0460436     0.95   0.341     -.046419    .1340854
                       1 218  |   .0217775   .0445741     0.49   0.625    -.0655944    .1091493
                       1 219  |   .0276316   .0446463     0.62   0.536    -.0598816    .1151449
                       1 220  |  -.0886282   .0462911    -1.91   0.056    -.1793656    .0021091
                       1 221  |   .1095315   .0496426     2.21   0.027     .0122247    .2068382
                       1 222  |    .052717   .0500782     1.05   0.293    -.0454435    .1508776
                       1 223  |   .0155202   .0524475     0.30   0.767    -.0872847    .1183251
                       1 224  |  -.0915235   .0464055    -1.97   0.049    -.1824852   -.0005618
                       1 225  |   -.225295   .0474342    -4.75   0.000    -.3182729    -.132317
                       1 226  |  -.2463848   .0478896    -5.14   0.000    -.3402556   -.1525141
                       1 227  |  -.2139664   .0491537    -4.35   0.000    -.3103148    -.117618
                       1 228  |  -.2493561    .050891    -4.90   0.000      -.34911   -.1496023
                       1 229  |  -.2505228   .0519419    -4.82   0.000    -.3523365    -.148709
                       1 230  |  -.2230862   .0520169    -4.29   0.000     -.325047   -.1211254
                       1 231  |  -.3359965   .0540587    -6.22   0.000    -.4419595   -.2300335
                       1 232  |  -.3715078   .0536593    -6.92   0.000    -.4766878   -.2663277
                       1 233  |  -.2966185   .0526602    -5.63   0.000    -.3998402   -.1933967
                       1 234  |   -.362069   .0511319    -7.08   0.000    -.4622949    -.261843
                              |
                        _cons |    1.43483   .0241553    59.40   0.000     1.387482    1.482178
-----------------------------------------------------------------------------------------------

qt_results_naive_collision_count.rtf
dir : seeout

[57]:
display (exp(.2578853)-1)*100
29.419037
[ ]:
display (exp(-.0537103)-1)*100

Decay effect

[50]:
xtpoisson collision_count i.flag_LPIS_1yr i.flag_LPIS_2yrup $time_variant_var $time_var $time_trend, fe vce(robust)
note: 1645 groups (41125 obs) dropped because of all zero outcomes

Iteration 0:   log pseudolikelihood = -407240.84
Iteration 1:   log pseudolikelihood = -400757.53
Iteration 2:   log pseudolikelihood = -400690.58
Iteration 3:   log pseudolikelihood = -400690.58

Conditional fixed-effects Poisson regression    Number of obs     =    283,550
Group variable: intersection~d                  Number of groups  =     11,342

                                                Obs per group:
                                                              min =         25
                                                              avg =       25.0
                                                              max =         25

                                                Wald chi2(101)    =    5691.71
Log pseudolikelihood  = -400690.58              Prob > chi2       =     0.0000

                                         (Std. Err. adjusted for clustering on intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
              collision_count |      Coef.   Std. Err.      z    P>|z|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
              1.flag_LPIS_1yr |  -.0537103   .0128657    -4.17   0.000    -.0789267    -.028494
            1.flag_LPIS_2yrup |  -.0469589   .0189065    -2.48   0.013     -.084015   -.0099029
                bike_route_tv |   .0229074   .0188585     1.21   0.224    -.0140547    .0598694
           flag_street_improv |  -.0159617   .0449844    -0.35   0.723    -.1041296    .0722061
               flag_left_turn |  -.1398624   .0369075    -3.79   0.000    -.2121998    -.067525
                              |
                    quarterly |
                         211  |  -.0161772    .011437    -1.41   0.157    -.0385934     .006239
                         212  |   -.089677   .0116558    -7.69   0.000     -.112522    -.066832
                         213  |   .0551532   .0112315     4.91   0.000     .0331398    .0771665
                         214  |  -.0060012   .0112924    -0.53   0.595    -.0281339    .0161314
                         215  |   .0131765   .0115481     1.14   0.254    -.0094574    .0358103
                         216  |  -.0854449    .012152    -7.03   0.000    -.1092623   -.0616274
                         217  |    .017671   .0115903     1.52   0.127    -.0050455    .0403876
                         218  |  -.0005455    .011582    -0.05   0.962    -.0232458    .0221548
                         219  |    .007254   .0117695     0.62   0.538    -.0158138    .0303219
                         220  |  -.0856666   .0123726    -6.92   0.000    -.1099164   -.0614168
                         221  |   .0297013   .0120001     2.48   0.013     .0061814    .0532211
                         222  |   .0511901   .0117796     4.35   0.000     .0281026    .0742777
                         223  |   .0792057   .0117792     6.72   0.000     .0561189    .1022924
                         224  |  -.0566911   .0120281    -4.71   0.000    -.0802658   -.0331165
                         225  |  -.2850728   .0134525   -21.19   0.000    -.3114393   -.2587064
                         226  |  -.5244293   .0147405   -35.58   0.000    -.5533201   -.4955385
                         227  |  -.4991333   .0152922   -32.64   0.000    -.5291054   -.4691612
                         228  |  -.2437919   .0148997   -16.36   0.000    -.2729949    -.214589
                         229  |  -.0527174   .0146508    -3.60   0.000    -.0814325   -.0240023
                         230  |  -.2241317    .015519   -14.44   0.000    -.2545484    -.193715
                         231  |  -.1482621   .0156195    -9.49   0.000    -.1788758   -.1176484
                         232  |  -.1896345   .0154433   -12.28   0.000    -.2199028   -.1593663
                         233  |  -.0841612   .0150418    -5.60   0.000    -.1136425   -.0546799
                         234  |  -.1823634    .015554   -11.72   0.000    -.2128487   -.1518781
                              |
                1.flag_school |          0  (omitted)
                              |
        flag_school#quarterly |
                       1 211  |   .0737785   .0453748     1.63   0.104    -.0151544    .1627113
                       1 212  |   .0386526   .0459627     0.84   0.400    -.0514327     .128738
                       1 213  |   .1044928   .0441176     2.37   0.018      .018024    .1909617
                       1 214  |   .0307487   .0453621     0.68   0.498    -.0581594    .1196569
                       1 215  |    .007687    .046232     0.17   0.868    -.0829259       .0983
                       1 216  |   .0603928   .0454592     1.33   0.184    -.0287056    .1494911
                       1 217  |   .0075143   .0505703     0.15   0.882    -.0916018    .1066303
                       1 218  |   .0169556    .043313     0.39   0.695    -.0679363    .1018474
                       1 219  |   .0574598   .0438647     1.31   0.190    -.0285135     .143433
                       1 220  |    .077141   .0485092     1.59   0.112    -.0179352    .1722173
                       1 221  |   .0106957   .0456011     0.23   0.815    -.0786807    .1000722
                       1 222  |   .0166134   .0463844     0.36   0.720    -.0742984    .1075252
                       1 223  |   .0460282   .0438496     1.05   0.294    -.0399154    .1319719
                       1 224  |   .0094756   .0456655     0.21   0.836    -.0800272    .0989784
                       1 225  |   .0419476   .0542054     0.77   0.439     -.064293    .1481881
                       1 226  |   -.080521   .0619554    -1.30   0.194    -.2019514    .0409093
                       1 227  |  -.0805428   .0603446    -1.33   0.182    -.1988161    .0377305
                       1 228  |  -.0514563   .0547894    -0.94   0.348    -.1588415    .0559289
                       1 229  |  -.0056292   .0505541    -0.11   0.911    -.1047134     .093455
                       1 230  |  -.0829614   .0535269    -1.55   0.121    -.1878723    .0219495
                       1 231  |  -.0104434   .0536615    -0.19   0.846     -.115618    .0947311
                       1 232  |  -.0307103   .0519477    -0.59   0.554    -.1325258    .0711053
                       1 233  |  -.1000354   .0534374    -1.87   0.061    -.2047707    .0046999
                       1 234  |  -.0946653   .0503959    -1.88   0.060    -.1934395    .0041089
                              |
        1.flag_priorityinters |          0  (omitted)
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.0353545   .0404113    -0.87   0.382    -.1145591    .0438502
                       1 212  |  -.0638537   .0421727    -1.51   0.130    -.1465107    .0188033
                       1 213  |  -.0965494   .0407844    -2.37   0.018    -.1764854   -.0166135
                       1 214  |  -.0724804    .040985    -1.77   0.077    -.1528096    .0078488
                       1 215  |    .010725   .0382883     0.28   0.779    -.0643186    .0857687
                       1 216  |  -.1251723   .0462471    -2.71   0.007     -.215815   -.0345297
                       1 217  |  -.1008636   .0455103    -2.22   0.027    -.1900621   -.0116651
                       1 218  |  -.0644796   .0412801    -1.56   0.118    -.1453871    .0164278
                       1 219  |  -.0622048   .0458153    -1.36   0.175     -.152001    .0275915
                       1 220  |  -.1154205   .0485637    -2.38   0.017    -.2106037   -.0202374
                       1 221  |  -.1166751   .0422469    -2.76   0.006    -.1994775   -.0338726
                       1 222  |  -.0697447   .0431493    -1.62   0.106    -.1543158    .0148265
                       1 223  |  -.1354724   .0417234    -3.25   0.001    -.2172488   -.0536961
                       1 224  |  -.0975442   .0470602    -2.07   0.038    -.1897805    -.005308
                       1 225  |  -.1240271   .0491318    -2.52   0.012    -.2203236   -.0277306
                       1 226  |  -.1082199   .0586321    -1.85   0.065    -.2231367     .006697
                       1 227  |  -.0991084   .0612925    -1.62   0.106    -.2192395    .0210228
                       1 228  |  -.1228566   .0578025    -2.13   0.034    -.2361474   -.0095657
                       1 229  |  -.2184036   .0562365    -3.88   0.000    -.3286252    -.108182
                       1 230  |  -.1594255   .0589264    -2.71   0.007    -.2749191    -.043932
                       1 231  |  -.1227459   .0621261    -1.98   0.048    -.2445109   -.0009809
                       1 232  |  -.1613512   .0600526    -2.69   0.007    -.2790521   -.0436503
                       1 233  |  -.1742638   .0558773    -3.12   0.002    -.2837813   -.0647464
                       1 234  |  -.1331788   .0549629    -2.42   0.015    -.2409041   -.0254534
                              |
               1.flag_seniors |          0  (omitted)
                              |
       flag_seniors#quarterly |
                       1 211  |   .0079583   .0217606     0.37   0.715    -.0346917    .0506083
                       1 212  |  -.0016033   .0216254    -0.07   0.941    -.0439883    .0407817
                       1 213  |  -.0356028   .0220521    -1.61   0.106    -.0788241    .0076186
                       1 214  |   .0308651   .0216061     1.43   0.153    -.0114821    .0732123
                       1 215  |   .0390323   .0217057     1.80   0.072      -.00351    .0815746
                       1 216  |   .0365578    .022633     1.62   0.106     -.007802    .0809177
                       1 217  |   .0199517   .0220152     0.91   0.365    -.0231972    .0631006
                       1 218  |   .0068175   .0214301     0.32   0.750    -.0351848    .0488197
                       1 219  |   .0148081   .0215807     0.69   0.493    -.0274893    .0571054
                       1 220  |  -.0093508   .0232782    -0.40   0.688    -.0549752    .0362735
                       1 221  |   .0438876   .0232374     1.89   0.059    -.0016568     .089432
                       1 222  |   .0283519   .0232771     1.22   0.223    -.0172704    .0739743
                       1 223  |   .0086699   .0241987     0.36   0.720    -.0387587    .0560985
                       1 224  |  -.0214324   .0229846    -0.93   0.351    -.0664813    .0236165
                       1 225  |   -.048011   .0257882    -1.86   0.063    -.0985549     .002533
                       1 226  |    .015766   .0285198     0.55   0.580    -.0401317    .0716637
                       1 227  |   .0362179   .0292007     1.24   0.215    -.0210143    .0934501
                       1 228  |  -.0443616   .0280639    -1.58   0.114    -.0993659    .0106426
                       1 229  |  -.0669461   .0268629    -2.49   0.013    -.1195964   -.0142958
                       1 230  |   .0037913   .0281943     0.13   0.893    -.0514685     .059051
                       1 231  |    -.08604   .0292437    -2.94   0.003    -.1433565   -.0287235
                       1 232  |   -.101178    .029575    -3.42   0.001     -.159144    -.043212
                       1 233  |  -.0733796   .0276223    -2.66   0.008    -.1275183   -.0192409
                       1 234  |  -.1044422   .0277759    -3.76   0.000     -.158882   -.0500023
-----------------------------------------------------------------------------------------------
[52]:
test 1.flag_LPIS_1yr  = 1.flag_LPIS_2yrup

 ( 1)  [collision_count]1.flag_LPIS_1yr - [collision_count]1.flag_LPIS_2yrup = 0

           chi2(  1) =    0.16
         Prob > chi2 =    0.6926
[46]:
display (exp(-.0537103)-1)*100
-5.2293383
[47]:
display (exp(-.0469589)-1)*100
-4.5873389
[ ]:
xtreg collision_count i.flag_LPIS_1yr i.flag_LPIS_2yrup $time_variant_var $time_var $time_trend, fe vce(robust)
[53]:
xtpoisson personsinjured i.flag_LPIS_1yr i.flag_LPIS_2yrup $time_variant_var $time_var $time_trend, fe vce(robust)
note: 2032 groups (50800 obs) dropped because of all zero outcomes

Iteration 0:   log pseudolikelihood = -227827.29
Iteration 1:   log pseudolikelihood = -226299.56
Iteration 2:   log pseudolikelihood = -226287.89
Iteration 3:   log pseudolikelihood = -226287.89

Conditional fixed-effects Poisson regression    Number of obs     =    273,875
Group variable: intersection~d                  Number of groups  =     10,955

                                                Obs per group:
                                                              min =         25
                                                              avg =       25.0
                                                              max =         25

                                                Wald chi2(101)    =    1484.22
Log pseudolikelihood  = -226287.89              Prob > chi2       =     0.0000

                                         (Std. Err. adjusted for clustering on intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
               personsinjured |      Coef.   Std. Err.      z    P>|z|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
              1.flag_LPIS_1yr |  -.0821486   .0259235    -3.17   0.002    -.1329578   -.0313395
            1.flag_LPIS_2yrup |   -.102828   .0293161    -3.51   0.000    -.1602864   -.0453696
                bike_route_tv |   .0166265   .0306735     0.54   0.588    -.0434924    .0767454
           flag_street_improv |  -.0260891   .0544575    -0.48   0.632     -.132824    .0806457
               flag_left_turn |  -.2000035   .0660171    -3.03   0.002    -.3293947   -.0706122
                              |
                    quarterly |
                         211  |   -.062585   .0282405    -2.22   0.027    -.1179353   -.0072346
                         212  |  -.1801586   .0294181    -6.12   0.000     -.237817   -.1225001
                         213  |   .0237807   .0271054     0.88   0.380    -.0293448    .0769063
                         214  |   .0212056   .0272875     0.78   0.437    -.0322769    .0746881
                         215  |  -.0472836   .0277692    -1.70   0.089    -.1017103    .0071431
                         216  |  -.2524503   .0298983    -8.44   0.000    -.3110499   -.1938507
                         217  |  -.0640306   .0289834    -2.21   0.027    -.1208371   -.0072241
                         218  |  -.0734696   .0284896    -2.58   0.010    -.1293083    -.017631
                         219  |  -.0994014   .0287245    -3.46   0.001    -.1557005   -.0431024
                         220  |  -.4107764   .0314234   -13.07   0.000    -.4723651   -.3491878
                         221  |  -.1374148   .0296828    -4.63   0.000     -.195592   -.0792375
                         222  |  -.0913445   .0282624    -3.23   0.001    -.1467378   -.0359513
                         223  |  -.0826672   .0288128    -2.87   0.004    -.1391392   -.0261953
                         224  |  -.2914078   .0298329    -9.77   0.000    -.3498792   -.2329364
                         225  |  -.3097438   .0318302    -9.73   0.000    -.3721299   -.2473577
                         226  |  -.4394656   .0324658   -13.54   0.000    -.5030974   -.3758339
                         227  |  -.4830693   .0325717   -14.83   0.000    -.5469086     -.41923
                         228  |  -.2828574   .0310818    -9.10   0.000    -.3437765   -.2219383
                         229  |  -.0666334   .0305914    -2.18   0.029    -.1265916   -.0066753
                         230  |  -.1659468   .0309142    -5.37   0.000    -.2265376   -.1053561
                         231  |  -.1305755   .0315345    -4.14   0.000     -.192382    -.068769
                         232  |    -.21974   .0306603    -7.17   0.000    -.2798331   -.1596469
                         233  |  -.0478588   .0305655    -1.57   0.117    -.1077662    .0120485
                         234  |  -.0908424   .0309107    -2.94   0.003    -.1514263   -.0302585
                              |
                1.flag_school |          0  (omitted)
                              |
        flag_school#quarterly |
                       1 211  |   .0107394    .117939     0.09   0.927    -.2204169    .2418957
                       1 212  |   -.140135   .1215266    -1.15   0.249    -.3783228    .0980527
                       1 213  |   .0495242    .112072     0.44   0.659    -.1701329    .2691813
                       1 214  |   .0431623   .1156745     0.37   0.709    -.1835556    .2698802
                       1 215  |  -.0225908   .1031275    -0.22   0.827    -.2247171    .1795354
                       1 216  |   .0232601   .1177444     0.20   0.843    -.2075148    .2540349
                       1 217  |  -.2280515   .1169426    -1.95   0.051    -.4572548    .0011519
                       1 218  |   .0412699   .1229332     0.34   0.737    -.1996749    .2822146
                       1 219  |   .0448082   .1203813     0.37   0.710    -.1911349    .2807512
                       1 220  |  -.0178201    .136747    -0.13   0.896    -.2858392     .250199
                       1 221  |    .025073   .1280542     0.20   0.845    -.2259087    .2760547
                       1 222  |  -.0278853   .1168793    -0.24   0.811    -.2569646     .201194
                       1 223  |  -.0723531   .1101161    -0.66   0.511    -.2881767    .1434705
                       1 224  |  -.0566954   .1248276    -0.45   0.650     -.301353    .1879622
                       1 225  |   .0729725   .1291909     0.56   0.572    -.1802371     .326182
                       1 226  |  -.2116067   .1386657    -1.53   0.127    -.4833866    .0601731
                       1 227  |   -.216368   .1408383    -1.54   0.124    -.4924061      .05967
                       1 228  |  -.1952404   .1263256    -1.55   0.122    -.4428339    .0523532
                       1 229  |  -.0783637   .1196918    -0.65   0.513    -.3129552    .1562279
                       1 230  |  -.1845874    .122756    -1.50   0.133    -.4251847    .0560098
                       1 231  |  -.0549991   .1214975    -0.45   0.651    -.2931298    .1831316
                       1 232  |  -.0037127   .1263832    -0.03   0.977    -.2514193    .2439939
                       1 233  |  -.1450237   .1217584    -1.19   0.234    -.3836657    .0936183
                       1 234  |  -.1104629    .119867    -0.92   0.357    -.3453979     .124472
                              |
        1.flag_priorityinters |          0  (omitted)
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.0709543   .0965712    -0.73   0.463    -.2602303    .1183217
                       1 212  |  -.0029848   .0964782    -0.03   0.975    -.1920787     .186109
                       1 213  |   -.054526   .0890742    -0.61   0.540    -.2291082    .1200562
                       1 214  |  -.0951566   .1008723    -0.94   0.346    -.2928627    .1025495
                       1 215  |   .0455625   .0963007     0.47   0.636    -.1431834    .2343084
                       1 216  |  -.1505179   .1139525    -1.32   0.187    -.3738606    .0728248
                       1 217  |  -.2435371   .0978843    -2.49   0.013    -.4353869   -.0516874
                       1 218  |   -.139691   .0945891    -1.48   0.140    -.3250822    .0457002
                       1 219  |  -.0679967   .1032534    -0.66   0.510    -.2703697    .1343763
                       1 220  |  -.1555755   .1017457    -1.53   0.126    -.3549933    .0438423
                       1 221  |  -.1302178    .108442    -1.20   0.230    -.3427602    .0823246
                       1 222  |  -.0668643   .0994797    -0.67   0.501    -.2618409    .1281122
                       1 223  |  -.1098982   .1012892    -1.08   0.278    -.3084214    .0886249
                       1 224  |  -.0973742   .0988752    -0.98   0.325     -.291166    .0964176
                       1 225  |  -.1665017   .1058547    -1.57   0.116     -.373973    .0409696
                       1 226  |  -.1742052    .124678    -1.40   0.162    -.4185697    .0701593
                       1 227  |  -.1816991   .1151325    -1.58   0.115    -.4073547    .0439565
                       1 228  |  -.1071043   .1041835    -1.03   0.304    -.3113002    .0970917
                       1 229  |  -.1442982   .1068056    -1.35   0.177    -.3536334    .0650371
                       1 230  |  -.1819836   .1043824    -1.74   0.081    -.3865693    .0226021
                       1 231  |  -.2039894   .1090754    -1.87   0.061    -.4177732    .0097944
                       1 232  |  -.2029418    .111524    -1.82   0.069    -.4215247    .0156412
                       1 233  |  -.2205981   .1173818    -1.88   0.060    -.4506622     .009466
                       1 234  |  -.1599549   .1113226    -1.44   0.151    -.3781432    .0582334
                              |
               1.flag_seniors |          0  (omitted)
                              |
       flag_seniors#quarterly |
                       1 211  |    .063037   .0534575     1.18   0.238    -.0417378    .1678119
                       1 212  |   .0607911   .0569775     1.07   0.286    -.0508828     .172465
                       1 213  |   .0285953   .0535814     0.53   0.594    -.0764223    .1336128
                       1 214  |   .1210501   .0603667     2.01   0.045     .0027335    .2393666
                       1 215  |   .0913843   .0541642     1.69   0.092    -.0147756    .1975442
                       1 216  |   .0279249   .0585855     0.48   0.634    -.0869007    .1427504
                       1 217  |   .0922437   .0543266     1.70   0.090    -.0142346    .1987219
                       1 218  |    .041694   .0560283     0.74   0.457    -.0681194    .1515074
                       1 219  |   .1390162   .0557348     2.49   0.013     .0297779    .2482545
                       1 220  |   .0921956   .0646563     1.43   0.154    -.0345284    .2189197
                       1 221  |   .0695907   .0576535     1.21   0.227    -.0434082    .1825895
                       1 222  |   .0412614   .0562864     0.73   0.464    -.0690579    .1515808
                       1 223  |   .0687236   .0550846     1.25   0.212    -.0392403    .1766875
                       1 224  |   .0961488   .0578114     1.66   0.096    -.0171595     .209457
                       1 225  |   .0014763   .0606623     0.02   0.981    -.1174195    .1203722
                       1 226  |   .0594035   .0642267     0.92   0.355    -.0664784    .1852854
                       1 227  |   .0725361   .0639888     1.13   0.257    -.0528797    .1979519
                       1 228  |   .0046373   .0631262     0.07   0.941    -.1190877    .1283623
                       1 229  |   .0255955   .0618204     0.41   0.679    -.0955702    .1467612
                       1 230  |   .0553434   .0586948     0.94   0.346    -.0596964    .1703831
                       1 231  |   -.018815   .0599063    -0.31   0.753    -.1362292    .0985992
                       1 232  |   .0150673   .0608397     0.25   0.804    -.1041763    .1343109
                       1 233  |   -.007786    .058705    -0.13   0.894    -.1228457    .1072737
                       1 234  |   .0100098   .0602633     0.17   0.868    -.1081041    .1281237
-----------------------------------------------------------------------------------------------
[54]:
test 1.flag_LPIS_1yr  = 1.flag_LPIS_2yrup

 ( 1)  [personsinjured]1.flag_LPIS_1yr - [personsinjured]1.flag_LPIS_2yrup = 0

           chi2(  1) =    0.41
         Prob > chi2 =    0.5199
[55]:
display (exp(-.0821486)-1)*100
-7.8864932
[56]:
display (exp(-.102828)-1)*100
-9.7717847
[ ]:
xtreg personsinjured i.flag_LPIS_1yr i.flag_LPIS_2yrup $time_variant_var $time_var $time_trend, fe vce(robust)

Robustness check

  • I exclude 2016 in the first model

  • I only examine 2016 in the second model

[20]:
xtreg collision_count i.flag_LPIS  $time_variant_var $time_var $time_trend if quarterly <= tq(2015q4) | quarterly >= tq(2017q1), fe vce(robust)
note: 1.flag_school omitted because of collinearity
note: 1.flag_priorityinters omitted because of collinearity
note: 1.flag_seniors omitted because of collinearity

Fixed-effects (within) regression               Number of obs     =    272,727
Group variable: intersecti~d                    Number of groups  =     12,987

R-sq:                                           Obs per group:
     within  = 0.0200                                         min =         21
     between = 0.0792                                         avg =       21.0
     overall = 0.0015                                         max =         21

                                                F(84,12986)       =      21.07
corr(u_i, Xb)  = -0.1649                        Prob > F          =     0.0000

                                    (Std. Err. adjusted for 12,987 clusters in intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
              collision_count |      Coef.   Std. Err.      t    P>|t|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |  -.1860512   .0317901    -5.85   0.000    -.2483645   -.1237379
                bike_route_tv |   .0348319   .0421361     0.83   0.408     -.047761    .1174249
           flag_street_improv |  -.1875121   .1334107    -1.41   0.160    -.4490166    .0739924
               flag_left_turn |  -.8637542   .1777408    -4.86   0.000    -1.212152   -.5153561
                              |
                    quarterly |
                         211  |  -.0272588   .0192282    -1.42   0.156    -.0649489    .0104314
                         212  |  -.1438345   .0191116    -7.53   0.000     -.181296   -.1063731
                         213  |   .0952231   .0194959     4.88   0.000     .0570083    .1334379
                         214  |  -.0100947   .0190621    -0.53   0.596    -.0474592    .0272698
                         215  |   .0223616   .0196888     1.14   0.256    -.0162314    .0609545
                         216  |  -.1373589   .0199314    -6.89   0.000    -.1764274   -.0982904
                         217  |   .0305665   .0197897     1.54   0.122    -.0082243    .0693572
                         218  |   .0000733   .0196029     0.00   0.997    -.0383513     .038498
                         219  |    .013119    .019998     0.66   0.512      -.02608    .0523181
                         220  |  -.1358129   .0202956    -6.69   0.000    -.1755952   -.0960305
                         221  |   .0522461   .0206102     2.53   0.011     .0118472    .0926451
                         222  |   .0908934   .0203889     4.46   0.000     .0509282    .1308586
                         223  |   .1409787   .0207104     6.81   0.000     .1003833    .1815741
                         228  |  -.3484955   .0228527   -15.25   0.000    -.3932902   -.3037009
                         229  |  -.0722946   .0239152    -3.02   0.003     -.119172   -.0254172
                         230  |  -.3193445   .0234757   -13.60   0.000    -.3653602   -.2733288
                         231  |  -.2118754   .0242398    -8.74   0.000     -.259389   -.1643618
                         232  |  -.2680254   .0237519   -11.28   0.000    -.3145827   -.2214681
                         233  |  -.1116765   .0240123    -4.65   0.000    -.1587441    -.064609
                         234  |  -.2527479   .0238241   -10.61   0.000    -.2994467   -.2060492
                              |
                1.flag_school |          0  (omitted)
                              |
        flag_school#quarterly |
                       1 211  |   .1182662   .0717569     1.65   0.099    -.0223879    .2589203
                       1 212  |   .0835474   .0682042     1.22   0.221    -.0501427    .2172376
                       1 213  |   .1587069    .072676     2.18   0.029     .0162513    .3011624
                       1 214  |   .0459516   .0704529     0.65   0.514    -.0921465    .1840497
                       1 215  |   .0020683    .071969     0.03   0.977    -.1390015    .1431381
                       1 216  |    .110743   .0687004     1.61   0.107    -.0239199     .245406
                       1 217  |     .00298   .0784026     0.04   0.970    -.1507007    .1566607
                       1 218  |   .0245121   .0667115     0.37   0.713    -.1062523    .1552765
                       1 219  |   .0858275   .0694739     1.24   0.217    -.0503514    .2220065
                       1 220  |   .1393515   .0734737     1.90   0.058    -.0046678    .2833708
                       1 221  |    .001452   .0714747     0.02   0.984    -.1386488    .1415529
                       1 222  |   .0061617   .0736836     0.08   0.933    -.1382689    .1505924
                       1 223  |    .048203   .0719014     0.67   0.503    -.0927342    .1891403
                       1 228  |     .03088   .0725757     0.43   0.670     -.111379    .1731389
                       1 229  |   .0276932   .0735391     0.38   0.706    -.1164542    .1718407
                       1 230  |  -.0129681   .0707523    -0.18   0.855    -.1516531    .1257169
                       1 231  |   .0558448   .0736272     0.76   0.448    -.0884753    .2001649
                       1 232  |   .0493333   .0708798     0.70   0.486    -.0896014    .1882681
                       1 233  |  -.0750396     .07341    -1.02   0.307     -.218934    .0688548
                       1 234  |  -.0258819   .0666564    -0.39   0.698    -.1565383    .1047744
                              |
        1.flag_priorityinters |          0  (omitted)
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.2767815   .2497188    -1.11   0.268     -.766267    .2127039
                       1 212  |  -.7644246   .2548753    -3.00   0.003    -1.264018   -.2648315
                       1 213  |   -.383692   .2501389    -1.53   0.125    -.8740009    .1066169
                       1 214  |  -.4428846   .2498923    -1.77   0.076    -.9327102     .046941
                       1 215  |   .1815863   .2452039     0.74   0.459    -.2990492    .6622219
                       1 216  |  -1.046639   .2754272    -3.80   0.000    -1.586517   -.5067613
                       1 217  |  -.5359691   .2768184    -1.94   0.053    -1.078574    .0066355
                       1 218  |   -.401903   .2531484    -1.59   0.112    -.8981109     .094305
                       1 219  |  -.3415039   .2845708    -1.20   0.230    -.8993044    .2162966
                       1 220  |  -1.034498   .2949835    -3.51   0.000    -1.612709   -.4562874
                       1 221  |  -.5498847   .2592778    -2.12   0.034    -1.058107   -.0416623
                       1 222  |  -.1741961   .2704196    -0.64   0.519    -.7042582    .3558659
                       1 223  |  -.4969507   .2582652    -1.92   0.054    -1.003188     .009287
                       1 228  |  -1.658411    .327511    -5.06   0.000    -2.300381   -1.016442
                       1 229  |  -1.521809   .3280397    -4.64   0.000    -2.164815   -.8788032
                       1 230  |  -1.720131   .3341064    -5.15   0.000    -2.375028   -1.065233
                       1 231  |  -1.383371   .3516043    -3.93   0.000    -2.072567   -.6941755
                       1 232  |  -1.695064   .3394859    -4.99   0.000    -2.360507   -1.029622
                       1 233  |  -1.429146   .3235483    -4.42   0.000    -2.063349   -.7949442
                       1 234  |  -1.562805   .3170446    -4.93   0.000    -2.184259   -.9413513
                              |
               1.flag_seniors |          0  (omitted)
                              |
       flag_seniors#quarterly |
                       1 211  |   .0112053   .0469976     0.24   0.812    -.0809168    .1033274
                       1 212  |  -.0484146   .0450863    -1.07   0.283    -.1367903    .0399612
                       1 213  |  -.0516448   .0486129    -1.06   0.288    -.1469332    .0436435
                       1 214  |   .0693203   .0473512     1.46   0.143     -.023495    .1621355
                       1 215  |   .1012724   .0482455     2.10   0.036     .0067042    .1958406
                       1 216  |   .0359529   .0477797     0.75   0.452    -.0577024    .1296081
                       1 217  |   .0578779   .0486317     1.19   0.234    -.0374473    .1532031
                       1 218  |   .0170016   .0463758     0.37   0.714    -.0739017    .1079049
                       1 219  |   .0413917   .0471582     0.88   0.380    -.0510453    .1338287
                       1 220  |  -.0614197   .0485284    -1.27   0.206    -.1565425    .0337032
                       1 221  |   .1248355   .0525562     2.38   0.018     .0218177    .2278533
                       1 222  |   .1030686   .0533935     1.93   0.054    -.0015905    .2077276
                       1 223  |   .0701802   .0561638     1.25   0.211    -.0399091    .1802695
                       1 228  |  -.1813792   .0544599    -3.33   0.001    -.2881285   -.0746298
                       1 229  |  -.1508895   .0554418    -2.72   0.007    -.2595635   -.0422156
                       1 230  |  -.0844274   .0552283    -1.53   0.126     -.192683    .0238281
                       1 231  |  -.2159984   .0574376    -3.76   0.000    -.3285846   -.1034122
                       1 232  |  -.2514055   .0571158    -4.40   0.000    -.3633607   -.1394502
                       1 233  |  -.1712594   .0552906    -3.10   0.002    -.2796371   -.0628816
                       1 234  |  -.2531487   .0539498    -4.69   0.000    -.3588982   -.1473992
                              |
                        _cons |   1.839408    .015155   121.37   0.000     1.809702    1.869114
------------------------------+----------------------------------------------------------------
                      sigma_u |  2.1017894
                      sigma_e |  1.5437367
                          rho |  .64957379   (fraction of variance due to u_i)
-----------------------------------------------------------------------------------------------
[22]:
xtreg collision_count i.flag_LPIS  $time_variant_var $time_var $time_trend if year == 2016, fe vce(robust)
note: 1.flag_school omitted because of collinearity
note: 1.flag_priorityinters omitted because of collinearity
note: 1.flag_seniors omitted because of collinearity

Fixed-effects (within) regression               Number of obs     =     51,948
Group variable: intersecti~d                    Number of groups  =     12,987

R-sq:                                           Obs per group:
     within  = 0.0571                                         min =          4
     between = 0.0547                                         avg =        4.0
     overall = 0.0005                                         max =          4

                                                F(16,12986)       =     103.33
corr(u_i, Xb)  = -0.1389                        Prob > F          =     0.0000

                                    (Std. Err. adjusted for 12,987 clusters in intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
              collision_count |      Coef.   Std. Err.      t    P>|t|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |  -.1380986   .0670268    -2.06   0.039     -.269481   -.0067162
                bike_route_tv |   .0219725   .0787777     0.28   0.780    -.1324433    .1763884
           flag_street_improv |   .1152964   .2873665     0.40   0.688    -.4479841    .6785769
               flag_left_turn |  -.6490463   .2570878    -2.52   0.012    -1.152976   -.1451166
                              |
                    quarterly |
                         225  |  -.3210769   .0182866   -17.56   0.000    -.3569213   -.2852324
                         226  |  -.5869726   .0187261   -31.35   0.000    -.6236785   -.5502666
                         227  |  -.5612587   .0190898   -29.40   0.000    -.5986776   -.5238398
                              |
                1.flag_school |          0  (omitted)
                              |
        flag_school#quarterly |
                       1 225  |   .1021429   .0664937     1.54   0.125    -.0281946    .2324804
                       1 226  |   .0398626   .0689611     0.58   0.563    -.0953112    .1750365
                       1 227  |   .0315377   .0676007     0.47   0.641    -.1009695    .1640449
                              |
        1.flag_priorityinters |          0  (omitted)
                              |
flag_priorityinters#quarterly |
                       1 225  |  -.9228321   .2269222    -4.07   0.000    -1.367633   -.4780312
                       1 226  |  -1.461868   .2577995    -5.67   0.000    -1.967193   -.9565429
                       1 227  |  -1.365646   .2579215    -5.29   0.000     -1.87121   -.8600819
                              |
               1.flag_seniors |          0  (omitted)
                              |
       flag_seniors#quarterly |
                       1 225  |  -.1369561   .0461815    -2.97   0.003    -.2274786   -.0464335
                       1 226  |  -.1221771   .0474501    -2.57   0.010    -.2151862   -.0291679
                       1 227  |    -.08318   .0475611    -1.75   0.080    -.1764068    .0100468
                              |
                        _cons |    1.72126   .0217955    78.97   0.000     1.678538    1.763983
------------------------------+----------------------------------------------------------------
                      sigma_u |  1.8312081
                      sigma_e |  1.2665107
                          rho |  .67643155   (fraction of variance due to u_i)
-----------------------------------------------------------------------------------------------
[ ]:
xtlogit flag_LPIS $time_variant_var $time_var $time_trend, fe
note: multiple positive outcomes within groups encountered.
note: 10,298 groups (257,450 obs) dropped because of all positive or
      all negative outcomes.
note: 1.flag_school omitted because of no within-group variance.
note: 1.flag_priorityinters omitted because of no within-group variance.
note: 1.flag_seniors omitted because of no within-group variance.

Iteration 0:   log likelihood = -17622.283
Iteration 1:   log likelihood = -2579.5891  (not concave)
Iteration 2:   log likelihood = -830.30598  (not concave)
Iteration 3:   log likelihood = -543.86119  (not concave)
Iteration 4:   log likelihood = -414.37961
Iteration 5:   log likelihood = -414.37961  (not concave)
Iteration 6:   log likelihood = -414.37961  (not concave)
Iteration 7:   log likelihood = -414.37961  (not concave)
Iteration 8:   log likelihood = -414.37961  (not concave)
Iteration 9:   log likelihood = -414.37961  (not concave)
Iteration 10:  log likelihood = -414.37961  (not concave)
Iteration 11:  log likelihood = -414.37961  (not concave)
Iteration 12:  log likelihood = -414.37961  (not concave)
Iteration 13:  log likelihood = -414.37961  (not concave)
Iteration 14:  log likelihood = -414.37961  (not concave)
Iteration 15:  log likelihood = -414.37961  (not concave)
Iteration 16:  log likelihood = -414.37961  (not concave)
Iteration 17:  log likelihood = -414.37961  (not concave)
Iteration 18:  log likelihood = -414.37961  (not concave)
Iteration 19:  log likelihood = -414.37961  (not concave)
Iteration 20:  log likelihood = -414.37961  (not concave)

Economic Analysis

[5]:
capture drop yhat
xtreg personsinjured i.flag_LPIS  $time_variant_var $time_var $time_trend, fe vce(cluster intersection_id)
predict yhat, xb


note: 1.flag_school omitted because of collinearity
note: 1.flag_priorityinters omitted because of collinearity
note: 1.flag_seniors omitted because of collinearity

Fixed-effects (within) regression               Number of obs     =    324,675
Group variable: intersecti~d                    Number of groups  =     12,987

R-sq:                                           Obs per group:
     within  = 0.0061                                         min =         25
     between = 0.0756                                         avg =       25.0
     overall = 0.0014                                         max =         25

                                                F(100,12986)      =      14.58
corr(u_i, Xb)  = -0.2259                        Prob > F          =     0.0000

                                    (Std. Err. adjusted for 12,987 clusters in intersection_id)
-----------------------------------------------------------------------------------------------
                              |               Robust
               personsinjured |      Coef.   Std. Err.      t    P>|t|     [95% Conf. Interval]
------------------------------+----------------------------------------------------------------
                  1.flag_LPIS |  -.0685645   .0125281    -5.47   0.000    -.0931214   -.0440077
                bike_route_tv |   .0046819   .0154194     0.30   0.761    -.0255424    .0349062
           flag_street_improv |  -.0361458   .0374576    -0.96   0.335    -.1095681    .0372766
               flag_left_turn |  -.2121507   .0599979    -3.54   0.000    -.3297555    -.094546
                              |
                    quarterly |
                         211  |  -.0302432   .0136316    -2.22   0.027    -.0569631   -.0035232
                         212  |  -.0813472   .0134299    -6.06   0.000    -.1076717   -.0550227
                         213  |   .0116899   .0136378     0.86   0.391    -.0150422    .0384219
                         214  |   .0100474   .0137154     0.73   0.464    -.0168367    .0369315
                         215  |  -.0228887   .0135224    -1.69   0.091    -.0493945    .0036172
                         216  |  -.1102991   .0132038    -8.35   0.000    -.1361805   -.0844177
                         217  |   -.030576   .0139398    -2.19   0.028    -.0579001   -.0032519
                         218  |  -.0350335   .0136687    -2.56   0.010    -.0618261   -.0082409
                         219  |  -.0469716   .0136165    -3.45   0.001    -.0736619   -.0202813
                         220  |  -.1659869   .0129548   -12.81   0.000    -.1913802   -.1405936
                         221  |  -.0632521   .0137856    -4.59   0.000    -.0902738   -.0362303
                         222  |   -.042427   .0134319    -3.16   0.002    -.0687555   -.0160984
                         223  |  -.0386025   .0137487    -2.81   0.005    -.0655519   -.0116531
                         224  |  -.1237482   .0130015    -9.52   0.000     -.149233   -.0982634
                         225  |  -.1296837   .0135185    -9.59   0.000    -.1561821   -.1031854
                         226  |  -.1725527   .0130769   -13.20   0.000    -.1981854   -.1469201
                         227  |  -.1860798    .012882   -14.44   0.000    -.2113303   -.1608292
                         228  |  -.1187173   .0134609    -8.82   0.000    -.1451026    -.092332
                         229  |  -.0300654   .0145033    -2.07   0.038     -.058494   -.0016369
                         230  |  -.0731065   .0139293    -5.25   0.000    -.1004101    -.045803
                         231  |  -.0584152   .0143592    -4.07   0.000    -.0865613   -.0302692
                         232  |  -.0942115   .0135727    -6.94   0.000    -.1208161    -.067607
                         233  |  -.0204062    .014449    -1.41   0.158    -.0487284     .007916
                         234  |  -.0397496   .0142923    -2.78   0.005    -.0677645   -.0117346
                              |
                1.flag_school |          0  (omitted)
                              |
        flag_school#quarterly |
                       1 211  |   .0078721   .0516604     0.15   0.879    -.0933898     .109134
                       1 212  |    -.03705   .0476935    -0.78   0.437    -.1305362    .0564362
                       1 213  |   .0203665    .051808     0.39   0.694    -.0811848    .1219177
                       1 214  |   .0158411   .0541283     0.29   0.770    -.0902582    .1219405
                       1 215  |  -.0077583   .0454556    -0.17   0.864     -.096858    .0813413
                       1 216  |   .0250453   .0472627     0.53   0.596    -.0675966    .1176872
                       1 217  |  -.0835573   .0468603    -1.78   0.075    -.1754104    .0082957
                       1 218  |   .0215375   .0540501     0.40   0.690    -.0844087    .1274836
                       1 219  |   .0237053   .0531426     0.45   0.656     -.080462    .1278726
                       1 220  |   .0201768   .0504117     0.40   0.689    -.0786375    .1189912
                       1 221  |   .0185187   .0543448     0.34   0.733    -.0880052    .1250425
                       1 222  |  -.0048769   .0496601    -0.10   0.922    -.1022179    .0924641
                       1 223  |   -.024075    .046442    -0.52   0.604    -.1151082    .0669582
                       1 224  |   .0000263   .0486011     0.00   1.000    -.0952389    .0952916
                       1 225  |    .045211     .05072     0.89   0.373    -.0542076    .1446295
                       1 226  |  -.0242152    .046235    -0.52   0.600    -.1148425    .0664122
                       1 227  |  -.0209284   .0457154    -0.46   0.647    -.1105373    .0686805
                       1 228  |  -.0351852   .0459025    -0.77   0.443    -.1251608    .0547904
                       1 229  |  -.0243047   .0495816    -0.49   0.624    -.1214919    .0728825
                       1 230  |  -.0482014   .0465731    -1.03   0.301    -.1394916    .0430887
                       1 231  |  -.0077977   .0492994    -0.16   0.874    -.1044317    .0888363
                       1 232  |    .017914    .049975     0.36   0.720    -.0800444    .1158724
                       1 233  |  -.0476149    .049227    -0.97   0.333     -.144107    .0488773
                       1 234  |  -.0309501   .0475794    -0.65   0.515    -.1242128    .0623126
                              |
        1.flag_priorityinters |          0  (omitted)
                              |
flag_priorityinters#quarterly |
                       1 211  |  -.2113786   .1839598    -1.15   0.251    -.5719667    .1492096
                       1 212  |  -.2560496   .1811858    -1.41   0.158    -.6112005    .0991012
                       1 213  |   -.062791   .1763782    -0.36   0.722    -.4085181    .2829361
                       1 214  |  -.1219451    .199334    -0.61   0.541     -.512669    .2687787
                       1 215  |   .0475892   .1958919     0.24   0.808    -.3363876     .431566
                       1 216  |  -.5702182   .1869774    -3.05   0.002    -.9367213    -.203715
                       1 217  |  -.5122694   .1702274    -3.01   0.003      -.84594   -.1785987
                       1 218  |  -.3526117   .1741935    -2.02   0.043    -.6940565    -.011167
                       1 219  |  -.2359353   .1943851    -1.21   0.225    -.6169587    .1450881
                       1 220  |  -.7141753   .1634873    -4.37   0.000    -1.034634   -.3937162
                       1 221  |  -.4077064   .1936388    -2.11   0.035    -.7872669   -.0281459
                       1 222  |  -.2515316   .1859506    -1.35   0.176     -.616022    .1129589
                       1 223  |   -.317183   .1897207    -1.67   0.095    -.6890634    .0546973
                       1 224  |  -.5197845   .1719959    -3.02   0.003    -.8569217   -.1826473
                       1 225  |  -.6516648   .1706941    -3.82   0.000    -.9862504   -.3170793
                       1 226  |  -.7725649   .1836278    -4.21   0.000    -1.132502   -.4126274
                       1 227  |  -.8081543    .176771    -4.57   0.000    -1.154651   -.4616573
                       1 228  |  -.5699489   .1746133    -3.26   0.001    -.9122167   -.2276812
                       1 229  |  -.3891891   .1882309    -2.07   0.039    -.7581492   -.0202289
                       1 230  |  -.5551344    .178881    -3.10   0.002    -.9057674   -.2045014
                       1 231  |  -.5629676   .1819113    -3.09   0.002    -.9195405   -.2063947
                       1 232  |  -.6403731   .1829521    -3.50   0.000    -.9989861   -.2817601
                       1 233  |  -.5130059    .201176    -2.55   0.011    -.9073403   -.1186714
                       1 234  |   -.463213    .195481    -2.37   0.018    -.8463845   -.0800415
                              |
               1.flag_seniors |          0  (omitted)
                              |
       flag_seniors#quarterly |
                       1 211  |   .0324944   .0298689     1.09   0.277    -.0260531    .0910419
                       1 212  |   .0208125   .0299688     0.69   0.487    -.0379308    .0795557
                       1 213  |   .0191596   .0310134     0.62   0.537    -.0416312    .0799504
                       1 214  |   .0778609   .0371756     2.09   0.036     .0049912    .1507307
                       1 215  |   .0499001   .0310305     1.61   0.108    -.0109243    .1107244
                       1 216  |   .0016339   .0292362     0.06   0.955    -.0556734    .0589412
                       1 217  |   .0493299   .0303956     1.62   0.105    -.0102499    .1089098
                       1 218  |   .0201895   .0308308     0.65   0.513    -.0402433    .0806223
                       1 219  |   .0735278   .0316138     2.33   0.020     .0115602    .1354954
                       1 220  |   .0190667   .0300667     0.63   0.526    -.0398684    .0780018
                       1 221  |   .0306734   .0310074     0.99   0.323    -.0301056    .0914524
                       1 222  |   .0191348   .0305697     0.63   0.531    -.0407864    .0790559
                       1 223  |   .0349789   .0304323     1.15   0.250    -.0246729    .0946307
                       1 224  |   .0304811    .029195     1.04   0.296    -.0267453    .0877075
                       1 225  |  -.0114898   .0287531    -0.40   0.689    -.0678502    .0448705
                       1 226  |   .0049785   .0289079     0.17   0.863    -.0516852    .0616423
                       1 227  |   .0078014   .0287093     0.27   0.786     -.048473    .0640758
                       1 228  |  -.0063269   .0303285    -0.21   0.835    -.0657751    .0531214
                       1 229  |   .0168867   .0335085     0.50   0.614    -.0487948    .0825682
                       1 230  |   .0257704   .0303448     0.85   0.396      -.03371    .0852507
                       1 231  |  -.0083851     .03055    -0.27   0.784    -.0682676    .0514975
                       1 232  |   .0042926   .0302655     0.14   0.887    -.0550322    .0636174
                       1 233  |  -.0001258   .0313212    -0.00   0.997    -.0615199    .0612683
                       1 234  |   .0063921   .0316185     0.20   0.840    -.0555848     .068369
                              |
                        _cons |   .5262366   .0091127    57.75   0.000     .5083744    .5440988
------------------------------+----------------------------------------------------------------
                      sigma_u |  .58502383
                      sigma_e |  .94076066
                          rho |  .27887027   (fraction of variance due to u_i)
-----------------------------------------------------------------------------------------------

The coefficient of -.0686 for flag_LPIS tells us that adding LPIs to the intersection reduces persons injured by 0.0686.

-.0685645 * 2,689 LPIs intersections * 25 quarters = -4,609 -.0685645 * 12,987 intersections * 25 quarters = -22,261

[42]:
margins, at(flag_LPIS = (0 1))

Predictive margins                              Number of obs     =    324,675
Model VCE    : Robust

Expression   : Linear prediction, predict()

1._at        : flag_LPIS       =           0

2._at        : flag_LPIS       =           1

------------------------------------------------------------------------------
             |            Delta-method
             |     Margin   Std. Err.      z    P>|z|     [95% Conf. Interval]
-------------+----------------------------------------------------------------
         _at |
          1  |   .4550341   .0007576   600.62   0.000     .4535492     .456519
          2  |   .3864696   .0117705    32.83   0.000     .3633999    .4095393
------------------------------------------------------------------------------
[26]:
margins, at( flag_LPIS == 1)

Predictive margins                              Number of obs     =    324,675
Model VCE    : Robust

Expression   : Linear prediction, predict()
at           : flag_LPIS       =           1

------------------------------------------------------------------------------
             |            Delta-method
             |     Margin   Std. Err.      z    P>|z|     [95% Conf. Interval]
-------------+----------------------------------------------------------------
       _cons |   .3864696   .0117705    32.83   0.000     .3633999    .4095393
------------------------------------------------------------------------------
[27]:
margins, at( flag_LPIS == 0)

Predictive margins                              Number of obs     =    324,675
Model VCE    : Robust

Expression   : Linear prediction, predict()
at           : flag_LPIS       =           0

------------------------------------------------------------------------------
             |            Delta-method
             |     Margin   Std. Err.      z    P>|z|     [95% Conf. Interval]
-------------+----------------------------------------------------------------
       _cons |   .4550341   .0007576   600.62   0.000     .4535492     .456519
------------------------------------------------------------------------------

(0.455 - 0.386) * 12,987 interesections * 25 quarters = 22,402

22,402 persons injured was avoided if LPIs were implemented on all signalized intersections.

[7]:
tabstat yhat, statistics(sum) by(flag_LPIS)

Summary for variables: yhat
     by categories of: flag_LPIS (Indicates the intersection at the time they became an LPIS intervention)

flag_LPIS |       sum
----------+----------
        0 |  139592.5
        1 |  6799.509
----------+----------
    Total |    146392
---------------------
[30]:
tabstat yhat, statistics(mean) by(flag_LPIS)

Summary for variables: yhat
     by categories of: flag_LPIS (Indicates the intersection at the time they became an LPIS intervention)

flag_LPIS |      mean
----------+----------
        0 |  .4576188
        1 |   .346313
----------+----------
    Total |  .4508878
---------------------