The safely_transform_data() function creates new variables in dataset using safe_extractor object.

safely_transform_data(safe_extractor, data, verbose = TRUE)

Arguments

safe_extractor

object containing information about variables transformations created with safe_extraction() function

data

data for which features are to be transformed

verbose

logical, if progress bar is to be printed

Value

data with extra columns containing newly created variables

Examples


library(DALEX)
library(randomForest)
library(rSAFE)

data <- apartments[1:500,]
set.seed(111)
model_rf <- randomForest(m2.price ~ construction.year + surface + floor +
                           no.rooms + district, data = data)
explainer_rf <- explain(model_rf, data = data[,2:6], y = data[,1])
#> Preparation of a new explainer is initiated
#>   -> model label       :  randomForest  (  default  )
#>   -> data              :  500  rows  5  cols 
#>   -> target variable   :  500  values 
#>   -> predict function  :  yhat.randomForest  will be used (  default  )
#>   -> predicted values  :  No value for predict function target column. (  default  )
#>   -> model_info        :  package randomForest , ver. 4.7.1.1 , task regression (  default  ) 
#>   -> predicted values  :  numerical, min =  2010.939 , mean =  3502.345 , max =  5764.513  
#>   -> residual function :  difference between y and yhat (  default  )
#>   -> residuals         :  numerical, min =  -387.9388 , mean =  -0.6372461 , max =  749.0998  
#>   A new explainer has been created!  
safe_extractor <- safe_extraction(explainer_rf, verbose = FALSE)
safely_transform_data(safe_extractor, data, verbose = FALSE)
#>        district m2.price construction.year surface floor no.rooms
#> 1   Srodmiescie     5897              1953      25     3        1
#> 2       Bielany     1818              1992     143     9        5
#> 3         Praga     3643              1937      56     1        2
#> 4        Ochota     3517              1995      93     7        3
#> 5       Mokotow     3013              1992     144     6        5
#> 6   Srodmiescie     5795              1926      61     6        2
#> 7       Mokotow     2983              1970     127     8        5
#> 8         Ursus     2346              1985     105     8        4
#> 9   Srodmiescie     4745              1928     145     6        6
#> 10  Srodmiescie     4284              1949     112     9        4
#> 11     Zoliborz     3961              1940      74     5        2
#> 12      Bielany     2797              1971      75     7        3
#> 13     Zoliborz     5116              1934      53     1        3
#> 14     Zoliborz     3337              1985     111     6        5
#> 15       Ochota     3666              1948      58     9        3
#> 16         Wola     2841              1975     116     2        4
#> 17         Wola     3172              1986      53     6        2
#> 18       Bemowo     3378              1983      37     6        1
#> 19        Ursus     3274              1992      33     7        2
#> 20      Mokotow     5267              1935      33     2        2
#> 21       Ochota     5112              1929      39     3        2
#> 22      Ursynow     2996              1980      95     3        3
#> 23  Srodmiescie     5170              1995     148     2        5
#> 24      Ursynow     3326              1972      42     6        1
#> 25       Ochota     4482              1963      27     5        1
#> 26       Ochota     3480              1990     142     1        6
#> 27       Bemowo     3842              1933      81     2        3
#> 28      Mokotow     3134              1994     112     8        5
#> 29         Wola     2225              1956      97    10        4
#> 30        Ursus     3372              2002      88     6        3
#> 31       Ochota     3868              1987      33    10        2
#> 32      Bielany     3085              1945      41     8        2
#> 33      Bielany     2928              1931     112     7        5
#> 34      Bielany     2819              1969      78     6        4
#> 35        Ursus     2201              1977     145     5        5
#> 36        Praga     2720              1957     123     2        5
#> 37        Ursus     2957              1985     109     1        5
#> 38      Bielany     3502              1996      70     7        2
#> 39     Zoliborz     3342              1931     141     9        5
#> 40     Zoliborz     2848              1954     145     7        6
#> 41       Bemowo     3158              1987      84     2        4
#> 42       Bemowo     3273              1977      48     5        3
#> 43        Praga     2628              1974     107     5        4
#> 44      Mokotow     4297              1997      65     8        3
#> 45      Bielany     3625              1996      43     9        1
#> 46  Srodmiescie     3769              1944     143    10        6
#> 47     Zoliborz     3748              1938      75     6        4
#> 48  Srodmiescie     6387              1923      51     1        2
#> 49      Mokotow     3330              1945      82    10        3
#> 50      Ursynow     2929              1926     107     8        4
#> 51     Zoliborz     4463              2001      49     8        3
#> 52     Zoliborz     3297              1994     115     6        5
#> 53         Wola     3337              2005      86     6        4
#> 54     Zoliborz     4046              1927     115     5        4
#> 55       Bemowo     2746              1953      90     6        3
#> 56        Praga     3845              1956      26     2        2
#> 57       Bemowo     2889              1935     111     2        4
#> 58       Bemowo     3137              1930      96     7        4
#> 59        Ursus     3030              1964     102     2        3
#> 60      Bielany     4477              1927      32     1        2
#> 61      Ursynow     3567              1948      28     5        1
#> 62         Wola     2445              1938     101     8        3
#> 63        Praga     2732              1935      82     7        3
#> 64       Bemowo     3547              1995      60     7        3
#> 65       Ochota     3765              1990     108     2        5
#> 66      Mokotow     2782              1985     147     8        5
#> 67      Mokotow     3155              1971     139     5        5
#> 68      Ursynow     3739              2007      36     8        2
#> 69     Zoliborz     5344              2004      31     2        1
#> 70      Ursynow     2113              1992     129     8        4
#> 71     Zoliborz     3797              1929     145     4        5
#> 72      Ursynow     2834              1992      62     8        3
#> 73        Ursus     3632              1994      57     1        2
#> 74     Zoliborz     3227              1973     142     4        5
#> 75     Zoliborz     4091              2007     121     4        4
#> 76        Praga     2379              1964     137     4        5
#> 77      Ursynow     2583              1989     102     6        4
#> 78      Ursynow     3407              1974      64     2        3
#> 79      Mokotow     3113              1967     144     5        5
#> 80      Bielany     3520              1993      43     4        1
#> 81       Bemowo     2917              1952      63     7        3
#> 82      Bielany     3045              1965      60     6        3
#> 83      Mokotow     2965              1968     144     6        6
#> 84       Ochota     3992              1961      41     8        2
#> 85      Ursynow     3138              1957      46     7        2
#> 86       Ochota     4315              1953      44     5        1
#> 87  Srodmiescie     5054              1927     100     9        3
#> 88      Bielany     2708              1971     124     2        5
#> 89     Zoliborz     2982              1972     127     8        5
#> 90      Mokotow     3341              1968     121     5        5
#> 91        Ursus     3065              1998      98     8        3
#> 92      Mokotow     2633              1960     137    10        6
#> 93      Mokotow     4348              1987      20     7        1
#> 94     Zoliborz     4167              1938      53     5        2
#> 95       Bemowo     3775              1971      43     1        2
#> 96         Wola     2772              1983      58     9        3
#> 97      Ursynow     2710              1943      69     9        2
#> 98     Zoliborz     4196              1986      75     2        3
#> 99     Zoliborz     4047              1989      45     7        2
#> 100    Zoliborz     3577              1998     147     6        5
#> 101        Wola     2019              1944     113    10        5
#> 102     Bielany     2892              1924     131     6        4
#> 103        Wola     4191              1925      26     5        1
#> 104     Bielany     2899              1938     110     2        4
#> 105       Ursus     2514              1951      89     8        4
#> 106     Ursynow     1733              1946     137    10        6
#> 107       Praga     3061              1943      84     3        4
#> 108     Mokotow     4290              1937      26     7        1
#> 109     Mokotow     3526              1934     142     7        5
#> 110        Wola     3015              1971      43     9        1
#> 111     Ursynow     3516              2004      58     8        2
#> 112      Ochota     3661              1936      64     9        2
#> 113     Ursynow     2803              1996     140     5        6
#> 114 Srodmiescie     4952              1960     105     3        4
#> 115 Srodmiescie     5092              1969      46     8        3
#> 116      Bemowo     3498              1921     110     2        4
#> 117        Wola     3854              1930      90     1        3
#> 118       Ursus     2626              1975     112     4        5
#> 119       Ursus     2920              1989      53     8        3
#> 120       Praga     3067              1958      53     7        2
#> 121       Ursus     2533              1959      82     9        3
#> 122     Bielany     2344              1951     101     9        3
#> 123     Bielany     3289              1922      91     6        4
#> 124       Praga     2957              1940      94     3        4
#> 125     Bielany     3845              1935      21     3        1
#> 126       Ursus     2890              1998     141     4        6
#> 127      Bemowo     3459              1991      44     4        2
#> 128       Ursus     2813              1922     124     7        5
#> 129     Ursynow     3566              1931      73     6        2
#> 130      Bemowo     4578              1932      27     1        1
#> 131     Bielany     2905              1945     110     2        4
#> 132      Ochota     4333              2002      47    10        2
#> 133       Praga     3633              1986      22     5        1
#> 134     Mokotow     4268              2007      93     5        4
#> 135 Srodmiescie     5521              1965      38     5        2
#> 136     Bielany     3433              1950      52     3        3
#> 137     Bielany     2384              1956     127     5        5
#> 138       Ursus     3687              1997      76     4        3
#> 139     Bielany     3143              1946      61     5        3
#> 140      Bemowo     3257              1974      24     8        2
#> 141      Ochota     3574              1992     133     2        4
#> 142     Bielany     2652              1991     125     3        4
#> 143      Bemowo     3194              2004      66    10        3
#> 144     Ursynow     1966              1953     123    10        4
#> 145    Zoliborz     2864              1948     149     7        5
#> 146      Bemowo     3580              1960      52     2        2
#> 147        Wola     1882              1954     142     8        6
#> 148     Bielany     2383              1974     107     7        5
#> 149        Wola     3800              2009      65     4        3
#> 150        Wola     3364              1935      54     4        2
#> 151      Ochota     4582              1999      52     7        2
#> 152     Ursynow     2537              1927     121    10        5
#> 153     Mokotow     4037              1931     141     2        5
#> 154 Srodmiescie     5615              1933      48     9        2
#> 155    Zoliborz     3990              1983      36     9        1
#> 156       Ursus     3150              1984      85     2        4
#> 157       Ursus     2563              1982      79     9        3
#> 158 Srodmiescie     4916              1985     128     1        4
#> 159        Wola     3279              2006      57    10        3
#> 160      Ochota     3434              2001     122    10        5
#> 161      Bemowo     3144              1933      76     9        4
#> 162      Bemowo     3280              1990      37     7        1
#> 163     Mokotow     3211              1957     104     9        3
#> 164    Zoliborz     3371              1958     118     5        5
#> 165        Wola     3393              2001      61     9        2
#> 166      Bemowo     2569              1935     118     4        5
#> 167     Bielany     3479              1967      47     3        3
#> 168       Praga     2394              1936     126     5        5
#> 169        Wola     3127              1946     102     1        3
#> 170       Ursus     2008              1993     129     9        4
#> 171     Bielany     4027              1924      62     2        3
#> 172      Ochota     3669              1938      68     8        3
#> 173        Wola     3136              1978      81     3        3
#> 174     Ursynow     2108              1940     114     9        5
#> 175     Bielany     3577              2008      57     7        3
#> 176     Mokotow     5015              2006      64     1        3
#> 177      Ochota     3977              1947      57     6        3
#> 178        Wola     3357              1984      39     6        1
#> 179     Mokotow     3819              1997     113     7        5
#> 180     Ursynow     2784              1963      77     7        3
#> 181       Ursus     2945              1925      86    10        4
#> 182      Ochota     4695              1934      21     9        2
#> 183     Mokotow     2995              1952     120     9        4
#> 184      Ochota     3156              1965     104     9        4
#> 185     Bielany     2974              1935     148     3        5
#> 186      Bemowo     2478              1990     107     6        5
#> 187      Bemowo     3680              1954      37     3        1
#> 188      Ochota     3652              1949      90     6        3
#> 189     Bielany     2881              1991      42    10        2
#> 190    Zoliborz     3181              1965     132     6        4
#> 191    Zoliborz     3587              1951      71     9        2
#> 192     Bielany     3445              1962      46     4        2
#> 193       Ursus     3576              1947      32     4        2
#> 194 Srodmiescie     3781              1985     142    10        6
#> 195      Ochota     4524              2003      58     7        2
#> 196      Ochota     3506              1956      94     7        3
#> 197        Wola     1970              1969     138     8        5
#> 198       Praga     2273              1968     133     6        4
#> 199     Mokotow     3989              1937      41     8        2
#> 200      Ochota     3009              1977     119     9        4
#> 201       Praga     3043              1988     106     1        4
#> 202      Ochota     3020              1939     133     7        5
#> 203      Bemowo     3219              1923      83     8        3
#> 204     Bielany     2721              2003     148     5        6
#> 205       Praga     3184              1952      57     5        3
#> 206       Ursus     2095              1977     131     8        4
#> 207      Ochota     3266              1988     118     6        5
#> 208 Srodmiescie     5079              1958      72     6        2
#> 209      Bemowo     3587              1929      31    10        2
#> 210      Ochota     4726              1989      37     1        2
#> 211     Ursynow     4121              1926      53     2        3
#> 212 Srodmiescie     5855              1924      55     6        2
#> 213        Wola     3437              1961      66     2        2
#> 214       Ursus     3043              1987      66     6        2
#> 215       Ursus     3836              1956      31     2        1
#> 216       Ursus     2118              1946     148     5        6
#> 217     Mokotow     4451              1929      35    10        2
#> 218    Zoliborz     4621              1949      23     4        1
#> 219       Praga     3795              2004      40     7        2
#> 220     Mokotow     4033              1921     107     6        4
#> 221      Bemowo     3069              1933      93     8        4
#> 222     Mokotow     4650              1979      40     2        1
#> 223      Ochota     3070              1994     113     9        4
#> 224      Bemowo     3583              2004      47     8        3
#> 225      Ochota     3640              1991     121     2        5
#> 226     Mokotow     4136              1997     106     5        4
#> 227     Ursynow     2197              1994     105     9        5
#> 228       Ursus     2590              1993      66    10        3
#> 229     Mokotow     4407              1932     114     1        5
#> 230      Bemowo     2676              1971      77     8        3
#> 231 Srodmiescie     5733              1996      32    10        1
#> 232     Mokotow     4363              1981      69     1        3
#> 233        Wola     3303              2009     120     3        4
#> 234    Zoliborz     4235              1924      56    10        2
#> 235        Wola     2531              1949     147     1        6
#> 236    Zoliborz     4300              1928     110     3        4
#> 237       Ursus     2489              1949     131     4        4
#> 238        Wola     3512              1937      59     2        2
#> 239     Bielany     3805              1929      94     1        3
#> 240     Bielany     4336              2005      46     1        2
#> 241        Wola     1623              1987     148    10        6
#> 242 Srodmiescie     5086              1995     111     1        4
#> 243     Ursynow     2458              1977      99     8        3
#> 244    Zoliborz     4065              1928      83     8        4
#> 245       Ursus     2711              1983      79     7        4
#> 246     Ursynow     2507              1959     104     7        3
#> 247 Srodmiescie     4813              1952      79     7        4
#> 248       Praga     3318              1923     103     5        3
#> 249 Srodmiescie     5079              1973      52     8        2
#> 250       Ursus     2183              1972     127     7        5
#> 251       Praga     4055              2010      64     2        2
#> 252     Mokotow     3637              1994      76     7        4
#> 253        Wola     2779              1977      92     5        4
#> 254     Mokotow     5303              1925      40     1        2
#> 255       Praga     2343              1960      96     9        4
#> 256       Praga     3022              1988      63     6        3
#> 257 Srodmiescie     5172              1970     103     1        4
#> 258       Praga     3415              1928      83     6        3
#> 259        Wola     2567              1971     108     5        5
#> 260     Mokotow     2691              1984     146     9        5
#> 261     Ursynow     2007              1957     124     9        5
#> 262      Ochota     4650              1925      25     9        2
#> 263       Ursus     3658              1927      24    10        2
#> 264      Ochota     3786              1922      91    10        4
#> 265      Ochota     4239              1929     106     4        4
#> 266 Srodmiescie     5604              1959      25     6        1
#> 267     Bielany     3449              1970      60     2        3
#> 268     Bielany     3294              1947      81     1        4
#> 269    Zoliborz     4018              1988      58     6        2
#> 270     Bielany     3646              2000      30    10        1
#> 271     Bielany     4299              1928      50     1        2
#> 272     Mokotow     4304              1925      50    10        2
#> 273       Ursus     3308              1921      64     9        3
#> 274      Bemowo     1990              1993     146     7        5
#> 275     Bielany     2068              1961     148     6        5
#> 276       Ursus     2315              1991      88    10        4
#> 277     Mokotow     3846              1978      80     5        3
#> 278      Bemowo     1861              1940     129    10        5
#> 279     Ursynow     3055              1969      24    10        2
#> 280     Mokotow     4454              1948      50     2        3
#> 281     Bielany     2671              1927     108    10        5
#> 282     Mokotow     3616              1981      83     7        3
#> 283      Ochota     4192              1993      36     7        1
#> 284        Wola     2807              1958     109     3        4
#> 285       Praga     1820              1972     148     8        6
#> 286      Ochota     5311              1926      29     2        2
#> 287       Praga     4006              1990      24     1        1
#> 288     Mokotow     2885              1990     122    10        4
#> 289 Srodmiescie     4713              2005     149     6        6
#> 290     Ursynow     2219              1964     108     9        4
#> 291     Mokotow     3486              1964     131     3        4
#> 292     Ursynow     4222              1927      48     2        2
#> 293 Srodmiescie     5476              1998      52    10        2
#> 294     Bielany     2267              1978     113     8        4
#> 295      Bemowo     3023              1955      33    10        1
#> 296      Ochota     3916              1952      33    10        1
#> 297     Mokotow     3559              1967      59    10        3
#> 298     Ursynow     3574              1924      98     3        3
#> 299 Srodmiescie     4916              1945      53     9        3
#> 300       Praga     2425              1956      83    10        3
#> 301      Bemowo     2076              1948     112    10        4
#> 302     Bielany     3222              1963      63     4        3
#> 303     Ursynow     3631              1954      42     3        1
#> 304      Bemowo     2507              1950      89     8        4
#> 305    Zoliborz     4255              1989      80     1        3
#> 306       Praga     2866              1959     108     2        5
#> 307    Zoliborz     4208              1974      84     1        3
#> 308     Ursynow     2331              1929     137    10        6
#> 309       Ursus     2278              1992     127     6        5
#> 310     Ursynow     3657              1921      29    10        1
#> 311     Bielany     3281              1959      52     5        2
#> 312       Ursus     3479              1967      47     3        3
#> 313       Ursus     3554              1999     105     2        4
#> 314 Srodmiescie     5982              1926      57     4        3
#> 315 Srodmiescie     4426              1962     132     5        5
#> 316      Ochota     3685              1936      56     9        3
#> 317       Ursus     3121              2003     128     4        4
#> 318       Ursus     3703              1949      25     4        1
#> 319       Ursus     3834              2002      62     4        3
#> 320       Praga     3195              2009     146     1        5
#> 321 Srodmiescie     6451              1924      35     2        2
#> 322        Wola     4264              2005      44     2        2
#> 323     Bielany     2662              1944      84     7        4
#> 324 Srodmiescie     5396              1948      20     8        2
#> 325 Srodmiescie     5065              2004     113     7        4
#> 326    Zoliborz     2836              1984     121    10        5
#> 327      Bemowo     2250              1950     120     7        5
#> 328     Ursynow     2836              1975      76     6        4
#> 329      Ochota     5144              1922      56     1        2
#> 330      Ochota     4075              1920      68    10        3
#> 331    Zoliborz     3021              1962     128     8        4
#> 332     Bielany     2895              1971      55     8        3
#> 333     Mokotow     2888              1975     121    10        4
#> 334       Ursus     3451              2005     125     1        4
#> 335       Praga     3010              1952      84     4        3
#> 336     Mokotow     4549              1939      30     4        1
#> 337      Ochota     5056              2000      49     2        3
#> 338     Bielany     3003              1951      90     3        4
#> 339     Ursynow     3367              1977      53     4        2
#> 340       Ursus     3133              1967     102     1        3
#> 341      Ochota     3820              1956      68     7        2
#> 342    Zoliborz     3234              1998     147     9        6
#> 343    Zoliborz     4411              1960      24     6        1
#> 344 Srodmiescie     4889              1947      86     6        3
#> 345    Zoliborz     4493              1969      31     4        2
#> 346    Zoliborz     3940              1990     101     2        3
#> 347    Zoliborz     3728              1971      97     4        4
#> 348     Bielany     3944              2005      71     2        3
#> 349     Ursynow     2114              1978     124     8        5
#> 350     Bielany     2823              1992     118     2        4
#> 351     Ursynow     2743              1923     131     7        5
#> 352      Ochota     3590              1936      76     8        3
#> 353      Ochota     4109              2003      94     7        3
#> 354     Mokotow     3947              1946      55     7        2
#> 355      Bemowo     1921              1957     148     7        6
#> 356 Srodmiescie     5970              1943      38     1        1
#> 357       Praga     3371              1973      53     4        2
#> 358      Ochota     3498              1955      85     8        3
#> 359      Ochota     3436              1990     126     4        4
#> 360    Zoliborz     3686              1982     106     3        5
#> 361 Srodmiescie     5884              1990      42     1        2
#> 362        Wola     2509              1986     114     5        5
#> 363 Srodmiescie     4401              1995     105     9        3
#> 364      Ochota     2961              1977     134     8        4
#> 365      Ochota     3505              1971      94     7        3
#> 366      Bemowo     2605              1941     114     4        5
#> 367    Zoliborz     4163              1938      54     5        2
#> 368 Srodmiescie     5531              1996      52     9        3
#> 369    Zoliborz     4159              2005     124     3        4
#> 370       Ursus     3617              1931      63     6        3
#> 371     Mokotow     5140              2008      26     4        2
#> 372 Srodmiescie     5753              1923     105     1        4
#> 373        Wola     4287              1928      46     1        3
#> 374       Praga     3626              2009     107     1        4
#> 375     Ursynow     2331              1944     132     5        5
#> 376      Ochota     3791              1996     136     5        5
#> 377     Bielany     3049              1980      40     9        1
#> 378     Bielany     2536              1943     106     6        4
#> 379     Bielany     3370              1924     128     1        5
#> 380     Ursynow     4253              2005      50     1        3
#> 381       Praga     3252              1940      65     4        2
#> 382     Mokotow     4636              1946      31     3        1
#> 383    Zoliborz     3651              1931     145     5        6
#> 384        Wola     3624              2001      38     9        2
#> 385       Praga     1987              1949     141     7        6
#> 386     Ursynow     2653              1956      60    10        3
#> 387       Ursus     3029              2003     142     3        5
#> 388      Ochota     4997              2000      20     6        2
#> 389       Ursus     2734              1947     127     2        4
#> 390      Bemowo     2637              1967      86     7        4
#> 391       Ursus     2983              1965      92     3        4
#> 392     Mokotow     3291              1962      81    10        4
#> 393     Ursynow     3626              1956      42     3        1
#> 394     Mokotow     3819              1988      58     8        2
#> 395       Ursus     2785              1957     116     2        5
#> 396    Zoliborz     2733              1968     137     9        6
#> 397 Srodmiescie     5844              1962      21     4        1
#> 398      Ochota     3574              1989      68     9        3
#> 399     Mokotow     3727              1961      62     8        3
#> 400       Praga     2898              1990      40    10        2
#> 401 Srodmiescie     4935              1995      62     8        3
#> 402      Ochota     4465              1932      48     8        3
#> 403        Wola     2768              1985     108     3        5
#> 404      Bemowo     3535              1942      62     1        3
#> 405       Praga     3909              1991      24     2        1
#> 406     Mokotow     3307              1988     144     3        5
#> 407 Srodmiescie     5201              1946      70     5        2
#> 408 Srodmiescie     4211              1981     109    10        4
#> 409     Mokotow     3645              1999     146     5        6
#> 410        Wola     1783              1957     147     9        5
#> 411       Praga     3336              2003      76     7        4
#> 412       Praga     3076              1978      92     2        4
#> 413      Bemowo     3504              1933      95     4        3
#> 414     Ursynow     3233              1972      77     2        4
#> 415 Srodmiescie     4700              1950     100     6        4
#> 416       Ursus     3151              1934      70    10        3
#> 417     Bielany     2204              1966     140     5        6
#> 418      Bemowo     3327              1971      42     6        1
#> 419      Bemowo     3576              1934      87     4        3
#> 420      Bemowo     3425              1997      72     7        3
#> 421       Ursus     2548              1956      80     9        3
#> 422       Ursus     2961              1987      39    10        1
#> 423        Wola     2099              1939     105    10        5
#> 424     Ursynow     2882              1998     127     6        5
#> 425      Bemowo     3411              1925      64     8        3
#> 426     Bielany     1872              1950     148     8        5
#> 427     Mokotow     3261              1970     104     8        4
#> 428       Praga     3645              1963      40     3        1
#> 429      Bemowo     3050              1958      75     5        2
#> 430       Praga     3748              1997      40     8        1
#> 431       Praga     3298              1928      90     6        4
#> 432     Mokotow     4384              2006      52     9        2
#> 433    Zoliborz     4863              2009      69     2        3
#> 434       Ursus     4075              2008      63     2        2
#> 435       Praga     2568              1990     118     4        5
#> 436       Ursus     4296              1997      40     2        2
#> 437    Zoliborz     3943              1963     101     2        3
#> 438 Srodmiescie     5001              1939      95     4        3
#> 439     Mokotow     4162              1931      79     8        3
#> 440     Ursynow     3784              1999      87     2        3
#> 441     Bielany     2121              1976     128     8        4
#> 442    Zoliborz     3992              1984      41     8        2
#> 443     Mokotow     4251              1997     130     1        5
#> 444     Mokotow     3923              1966      28    10        2
#> 445     Bielany     2638              1956     111     4        5
#> 446 Srodmiescie     5128              1956      72     5        3
#> 447      Ochota     3743              1996     136     5        6
#> 448       Praga     3397              1967      25     7        1
#> 449       Ursus     3742              1952      31     3        1
#> 450     Ursynow     3354              1948      70     2        3
#> 451    Zoliborz     4310              2001     129     1        4
#> 452     Mokotow     3912              1983      84     4        3
#> 453    Zoliborz     3401              1940     105     7        3
#> 454      Ochota     3377              1957      92     8        4
#> 455       Ursus     3068              2007     148     2        5
#> 456    Zoliborz     4048              1942      90     2        3
#> 457       Praga     3619              1972      38     3        2
#> 458     Mokotow     3924              1931     123     5        5
#> 459     Mokotow     4962              1995      39     5        1
#> 460       Ursus     3060              1951      34     9        2
#> 461        Wola     2633              1977      62    10        3
#> 462        Wola     2755              1950     125     2        4
#> 463    Zoliborz     2762              1951     139     9        5
#> 464      Ochota     4839              2007      61     3        3
#> 465     Ursynow     2545              2000     130     9        5
#> 466        Wola     1967              1945     123    10        4
#> 467 Srodmiescie     5530              1944      47     4        2
#> 468     Ursynow     3397              1958      55     3        3
#> 469      Ochota     3314              1975     144     3        5
#> 470     Mokotow     3289              1978      91     9        4
#> 471 Srodmiescie     5328              1955      57     5        2
#> 472        Wola     2468              1971     148     2        5
#> 473    Zoliborz     4573              1927      63     6        2
#> 474     Bielany     3309              1968      39     6        2
#> 475       Praga     3643              1949      41     3        1
#> 476        Wola     3325              1932      72     8        3
#> 477      Ochota     3567              1984      68     9        3
#> 478       Praga     2243              1986     106     9        4
#> 479     Mokotow     4756              1941      39     1        1
#> 480     Ursynow     2474              1994     148     2        5
#> 481      Bemowo     2220              1936     123     7        5
#> 482        Wola     2740              1979      91     6        3
#> 483        Wola     3802              1965      25     3        1
#> 484        Wola     3182              1985      57     5        3
#> 485     Ursynow     2927              1986      97     3        4
#> 486    Zoliborz     3382              1920     132    10        4
#> 487     Ursynow     3021              1985      98     2        4
#> 488      Bemowo     3105              1967      49     7        2
#> 489        Wola     2011              1949     114    10        5
#> 490 Srodmiescie     5899              1937      25     3        1
#> 491       Ursus     2664              1945      94     6        4
#> 492     Ursynow     3054              1936      95     2        4
#> 493      Ochota     4061              1992      94     1        4
#> 494    Zoliborz     4044              1987      46     7        2
#> 495       Praga     3037              1942      26    10        2
#> 496       Ursus     2642              1984     111     4        5
#> 497     Bielany     2336              1981     106     8        4
#> 498        Wola     2972              1950      63     7        2
#> 499     Bielany     2656              1994     129     2        5
#> 500       Praga     3092              1927     106     6        5
#>     construction.year_new     surface_new floor_new no.rooms_new
#> 1            (1940, 1964]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 2            (1983, 1994]      (125, Inf)  (6, Inf)     (3, Inf)
#> 3            (1926, 1940]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 4             (1994, Inf)  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 5            (1983, 1994]      (125, Inf)    (3, 6]     (3, Inf)
#> 6            (-Inf, 1926]        (32, 64]    (3, 6]    (-Inf, 3]
#> 7            (1964, 1983]      (125, Inf)  (6, Inf)     (3, Inf)
#> 8            (1983, 1994] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 9            (1926, 1940]      (125, Inf)    (3, 6]     (3, Inf)
#> 10           (1940, 1964] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 11           (1926, 1940]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 12           (1964, 1983]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 13           (1926, 1940]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 14           (1983, 1994] (100.5102, 125]    (3, 6]     (3, Inf)
#> 15           (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 16           (1964, 1983] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 17           (1983, 1994]        (32, 64]    (3, 6]    (-Inf, 3]
#> 18           (1964, 1983]        (32, 64]    (3, 6]    (-Inf, 3]
#> 19           (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 20           (1926, 1940]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 21           (1926, 1940]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 22           (1964, 1983]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 23            (1994, Inf)      (125, Inf) (-Inf, 3]     (3, Inf)
#> 24           (1964, 1983]        (32, 64]    (3, 6]    (-Inf, 3]
#> 25           (1940, 1964]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 26           (1983, 1994]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 27           (1926, 1940]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 28           (1983, 1994] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 29           (1940, 1964]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 30            (1994, Inf)  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 31           (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 32           (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 33           (1926, 1940] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 34           (1964, 1983]  (64, 100.5102]    (3, 6]     (3, Inf)
#> 35           (1964, 1983]      (125, Inf)    (3, 6]     (3, Inf)
#> 36           (1940, 1964] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 37           (1983, 1994] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 38            (1994, Inf)  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 39           (1926, 1940]      (125, Inf)  (6, Inf)     (3, Inf)
#> 40           (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 41           (1983, 1994]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 42           (1964, 1983]        (32, 64]    (3, 6]    (-Inf, 3]
#> 43           (1964, 1983] (100.5102, 125]    (3, 6]     (3, Inf)
#> 44            (1994, Inf)  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 45            (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 46           (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 47           (1926, 1940]  (64, 100.5102]    (3, 6]     (3, Inf)
#> 48           (-Inf, 1926]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 49           (1940, 1964]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 50           (-Inf, 1926] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 51            (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 52           (1983, 1994] (100.5102, 125]    (3, 6]     (3, Inf)
#> 53            (1994, Inf)  (64, 100.5102]    (3, 6]     (3, Inf)
#> 54           (1926, 1940] (100.5102, 125]    (3, 6]     (3, Inf)
#> 55           (1940, 1964]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 56           (1940, 1964]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 57           (1926, 1940] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 58           (1926, 1940]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 59           (1940, 1964] (100.5102, 125] (-Inf, 3]    (-Inf, 3]
#> 60           (1926, 1940]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 61           (1940, 1964]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 62           (1926, 1940] (100.5102, 125]  (6, Inf)    (-Inf, 3]
#> 63           (1926, 1940]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 64            (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 65           (1983, 1994] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 66           (1983, 1994]      (125, Inf)  (6, Inf)     (3, Inf)
#> 67           (1964, 1983]      (125, Inf)    (3, 6]     (3, Inf)
#> 68            (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 69            (1994, Inf)      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 70           (1983, 1994]      (125, Inf)  (6, Inf)     (3, Inf)
#> 71           (1926, 1940]      (125, Inf)    (3, 6]     (3, Inf)
#> 72           (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 73           (1983, 1994]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 74           (1964, 1983]      (125, Inf)    (3, 6]     (3, Inf)
#> 75            (1994, Inf) (100.5102, 125]    (3, 6]     (3, Inf)
#> 76           (1940, 1964]      (125, Inf)    (3, 6]     (3, Inf)
#> 77           (1983, 1994] (100.5102, 125]    (3, 6]     (3, Inf)
#> 78           (1964, 1983]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 79           (1964, 1983]      (125, Inf)    (3, 6]     (3, Inf)
#> 80           (1983, 1994]        (32, 64]    (3, 6]    (-Inf, 3]
#> 81           (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 82           (1964, 1983]        (32, 64]    (3, 6]    (-Inf, 3]
#> 83           (1964, 1983]      (125, Inf)    (3, 6]     (3, Inf)
#> 84           (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 85           (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 86           (1940, 1964]        (32, 64]    (3, 6]    (-Inf, 3]
#> 87           (1926, 1940]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 88           (1964, 1983] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 89           (1964, 1983]      (125, Inf)  (6, Inf)     (3, Inf)
#> 90           (1964, 1983] (100.5102, 125]    (3, 6]     (3, Inf)
#> 91            (1994, Inf)  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 92           (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 93           (1983, 1994]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 94           (1926, 1940]        (32, 64]    (3, 6]    (-Inf, 3]
#> 95           (1964, 1983]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 96           (1964, 1983]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 97           (1940, 1964]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 98           (1983, 1994]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 99           (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 100           (1994, Inf)      (125, Inf)    (3, 6]     (3, Inf)
#> 101          (1940, 1964] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 102          (-Inf, 1926]      (125, Inf)    (3, 6]     (3, Inf)
#> 103          (-Inf, 1926]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 104          (1926, 1940] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 105          (1940, 1964]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 106          (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 107          (1940, 1964]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 108          (1926, 1940]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 109          (1926, 1940]      (125, Inf)  (6, Inf)     (3, Inf)
#> 110          (1964, 1983]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 111           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 112          (1926, 1940]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 113           (1994, Inf)      (125, Inf)    (3, 6]     (3, Inf)
#> 114          (1940, 1964] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 115          (1964, 1983]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 116          (-Inf, 1926] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 117          (1926, 1940]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 118          (1964, 1983] (100.5102, 125]    (3, 6]     (3, Inf)
#> 119          (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 120          (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 121          (1940, 1964]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 122          (1940, 1964] (100.5102, 125]  (6, Inf)    (-Inf, 3]
#> 123          (-Inf, 1926]  (64, 100.5102]    (3, 6]     (3, Inf)
#> 124          (1926, 1940]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 125          (1926, 1940]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 126           (1994, Inf)      (125, Inf)    (3, 6]     (3, Inf)
#> 127          (1983, 1994]        (32, 64]    (3, 6]    (-Inf, 3]
#> 128          (-Inf, 1926] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 129          (1926, 1940]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 130          (1926, 1940]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 131          (1940, 1964] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 132           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 133          (1983, 1994]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 134           (1994, Inf)  (64, 100.5102]    (3, 6]     (3, Inf)
#> 135          (1964, 1983]        (32, 64]    (3, 6]    (-Inf, 3]
#> 136          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 137          (1940, 1964]      (125, Inf)    (3, 6]     (3, Inf)
#> 138           (1994, Inf)  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 139          (1940, 1964]        (32, 64]    (3, 6]    (-Inf, 3]
#> 140          (1964, 1983]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 141          (1983, 1994]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 142          (1983, 1994] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 143           (1994, Inf)  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 144          (1940, 1964] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 145          (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 146          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 147          (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 148          (1964, 1983] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 149           (1994, Inf)  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 150          (1926, 1940]        (32, 64]    (3, 6]    (-Inf, 3]
#> 151           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 152          (1926, 1940] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 153          (1926, 1940]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 154          (1926, 1940]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 155          (1964, 1983]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 156          (1983, 1994]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 157          (1964, 1983]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 158          (1983, 1994]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 159           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 160           (1994, Inf) (100.5102, 125]  (6, Inf)     (3, Inf)
#> 161          (1926, 1940]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 162          (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 163          (1940, 1964] (100.5102, 125]  (6, Inf)    (-Inf, 3]
#> 164          (1940, 1964] (100.5102, 125]    (3, 6]     (3, Inf)
#> 165           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 166          (1926, 1940] (100.5102, 125]    (3, 6]     (3, Inf)
#> 167          (1964, 1983]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 168          (1926, 1940]      (125, Inf)    (3, 6]     (3, Inf)
#> 169          (1940, 1964] (100.5102, 125] (-Inf, 3]    (-Inf, 3]
#> 170          (1983, 1994]      (125, Inf)  (6, Inf)     (3, Inf)
#> 171          (-Inf, 1926]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 172          (1926, 1940]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 173          (1964, 1983]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 174          (1926, 1940] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 175           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 176           (1994, Inf)        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 177          (1940, 1964]        (32, 64]    (3, 6]    (-Inf, 3]
#> 178          (1983, 1994]        (32, 64]    (3, 6]    (-Inf, 3]
#> 179           (1994, Inf) (100.5102, 125]  (6, Inf)     (3, Inf)
#> 180          (1940, 1964]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 181          (-Inf, 1926]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 182          (1926, 1940]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 183          (1940, 1964] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 184          (1964, 1983] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 185          (1926, 1940]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 186          (1983, 1994] (100.5102, 125]    (3, 6]     (3, Inf)
#> 187          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 188          (1940, 1964]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 189          (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 190          (1964, 1983]      (125, Inf)    (3, 6]     (3, Inf)
#> 191          (1940, 1964]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 192          (1940, 1964]        (32, 64]    (3, 6]    (-Inf, 3]
#> 193          (1940, 1964]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 194          (1983, 1994]      (125, Inf)  (6, Inf)     (3, Inf)
#> 195           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 196          (1940, 1964]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 197          (1964, 1983]      (125, Inf)  (6, Inf)     (3, Inf)
#> 198          (1964, 1983]      (125, Inf)    (3, 6]     (3, Inf)
#> 199          (1926, 1940]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 200          (1964, 1983] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 201          (1983, 1994] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 202          (1926, 1940]      (125, Inf)  (6, Inf)     (3, Inf)
#> 203          (-Inf, 1926]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 204           (1994, Inf)      (125, Inf)    (3, 6]     (3, Inf)
#> 205          (1940, 1964]        (32, 64]    (3, 6]    (-Inf, 3]
#> 206          (1964, 1983]      (125, Inf)  (6, Inf)     (3, Inf)
#> 207          (1983, 1994] (100.5102, 125]    (3, 6]     (3, Inf)
#> 208          (1940, 1964]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 209          (1926, 1940]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 210          (1983, 1994]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 211          (-Inf, 1926]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 212          (-Inf, 1926]        (32, 64]    (3, 6]    (-Inf, 3]
#> 213          (1940, 1964]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 214          (1983, 1994]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 215          (1940, 1964]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 216          (1940, 1964]      (125, Inf)    (3, 6]     (3, Inf)
#> 217          (1926, 1940]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 218          (1940, 1964]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 219           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 220          (-Inf, 1926] (100.5102, 125]    (3, 6]     (3, Inf)
#> 221          (1926, 1940]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 222          (1964, 1983]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 223          (1983, 1994] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 224           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 225          (1983, 1994] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 226           (1994, Inf) (100.5102, 125]    (3, 6]     (3, Inf)
#> 227          (1983, 1994] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 228          (1983, 1994]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 229          (1926, 1940] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 230          (1964, 1983]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 231           (1994, Inf)      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 232          (1964, 1983]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 233           (1994, Inf) (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 234          (-Inf, 1926]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 235          (1940, 1964]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 236          (1926, 1940] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 237          (1940, 1964]      (125, Inf)    (3, 6]     (3, Inf)
#> 238          (1926, 1940]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 239          (1926, 1940]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 240           (1994, Inf)        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 241          (1983, 1994]      (125, Inf)  (6, Inf)     (3, Inf)
#> 242           (1994, Inf) (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 243          (1964, 1983]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 244          (1926, 1940]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 245          (1964, 1983]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 246          (1940, 1964] (100.5102, 125]  (6, Inf)    (-Inf, 3]
#> 247          (1940, 1964]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 248          (-Inf, 1926] (100.5102, 125]    (3, 6]    (-Inf, 3]
#> 249          (1964, 1983]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 250          (1964, 1983]      (125, Inf)  (6, Inf)     (3, Inf)
#> 251           (1994, Inf)        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 252          (1983, 1994]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 253          (1964, 1983]  (64, 100.5102]    (3, 6]     (3, Inf)
#> 254          (-Inf, 1926]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 255          (1940, 1964]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 256          (1983, 1994]        (32, 64]    (3, 6]    (-Inf, 3]
#> 257          (1964, 1983] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 258          (1926, 1940]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 259          (1964, 1983] (100.5102, 125]    (3, 6]     (3, Inf)
#> 260          (1983, 1994]      (125, Inf)  (6, Inf)     (3, Inf)
#> 261          (1940, 1964] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 262          (-Inf, 1926]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 263          (1926, 1940]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 264          (-Inf, 1926]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 265          (1926, 1940] (100.5102, 125]    (3, 6]     (3, Inf)
#> 266          (1940, 1964]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 267          (1964, 1983]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 268          (1940, 1964]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 269          (1983, 1994]        (32, 64]    (3, 6]    (-Inf, 3]
#> 270           (1994, Inf)      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 271          (1926, 1940]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 272          (-Inf, 1926]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 273          (-Inf, 1926]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 274          (1983, 1994]      (125, Inf)  (6, Inf)     (3, Inf)
#> 275          (1940, 1964]      (125, Inf)    (3, 6]     (3, Inf)
#> 276          (1983, 1994]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 277          (1964, 1983]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 278          (1926, 1940]      (125, Inf)  (6, Inf)     (3, Inf)
#> 279          (1964, 1983]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 280          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 281          (1926, 1940] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 282          (1964, 1983]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 283          (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 284          (1940, 1964] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 285          (1964, 1983]      (125, Inf)  (6, Inf)     (3, Inf)
#> 286          (-Inf, 1926]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 287          (1983, 1994]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 288          (1983, 1994] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 289           (1994, Inf)      (125, Inf)    (3, 6]     (3, Inf)
#> 290          (1940, 1964] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 291          (1940, 1964]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 292          (1926, 1940]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 293           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 294          (1964, 1983] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 295          (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 296          (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 297          (1964, 1983]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 298          (-Inf, 1926]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 299          (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 300          (1940, 1964]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 301          (1940, 1964] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 302          (1940, 1964]        (32, 64]    (3, 6]    (-Inf, 3]
#> 303          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 304          (1940, 1964]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 305          (1983, 1994]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 306          (1940, 1964] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 307          (1964, 1983]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 308          (1926, 1940]      (125, Inf)  (6, Inf)     (3, Inf)
#> 309          (1983, 1994]      (125, Inf)    (3, 6]     (3, Inf)
#> 310          (-Inf, 1926]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 311          (1940, 1964]        (32, 64]    (3, 6]    (-Inf, 3]
#> 312          (1964, 1983]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 313           (1994, Inf) (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 314          (-Inf, 1926]        (32, 64]    (3, 6]    (-Inf, 3]
#> 315          (1940, 1964]      (125, Inf)    (3, 6]     (3, Inf)
#> 316          (1926, 1940]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 317           (1994, Inf)      (125, Inf)    (3, 6]     (3, Inf)
#> 318          (1940, 1964]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 319           (1994, Inf)        (32, 64]    (3, 6]    (-Inf, 3]
#> 320           (1994, Inf)      (125, Inf) (-Inf, 3]     (3, Inf)
#> 321          (-Inf, 1926]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 322           (1994, Inf)        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 323          (1940, 1964]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 324          (1940, 1964]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 325           (1994, Inf) (100.5102, 125]  (6, Inf)     (3, Inf)
#> 326          (1983, 1994] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 327          (1940, 1964] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 328          (1964, 1983]  (64, 100.5102]    (3, 6]     (3, Inf)
#> 329          (-Inf, 1926]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 330          (-Inf, 1926]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 331          (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 332          (1964, 1983]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 333          (1964, 1983] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 334           (1994, Inf) (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 335          (1940, 1964]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 336          (1926, 1940]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 337           (1994, Inf)        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 338          (1940, 1964]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 339          (1964, 1983]        (32, 64]    (3, 6]    (-Inf, 3]
#> 340          (1964, 1983] (100.5102, 125] (-Inf, 3]    (-Inf, 3]
#> 341          (1940, 1964]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 342           (1994, Inf)      (125, Inf)  (6, Inf)     (3, Inf)
#> 343          (1940, 1964]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 344          (1940, 1964]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 345          (1964, 1983]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 346          (1983, 1994] (100.5102, 125] (-Inf, 3]    (-Inf, 3]
#> 347          (1964, 1983]  (64, 100.5102]    (3, 6]     (3, Inf)
#> 348           (1994, Inf)  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 349          (1964, 1983] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 350          (1983, 1994] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 351          (-Inf, 1926]      (125, Inf)  (6, Inf)     (3, Inf)
#> 352          (1926, 1940]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 353           (1994, Inf)  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 354          (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 355          (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 356          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 357          (1964, 1983]        (32, 64]    (3, 6]    (-Inf, 3]
#> 358          (1940, 1964]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 359          (1983, 1994]      (125, Inf)    (3, 6]     (3, Inf)
#> 360          (1964, 1983] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 361          (1983, 1994]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 362          (1983, 1994] (100.5102, 125]    (3, 6]     (3, Inf)
#> 363           (1994, Inf) (100.5102, 125]  (6, Inf)    (-Inf, 3]
#> 364          (1964, 1983]      (125, Inf)  (6, Inf)     (3, Inf)
#> 365          (1964, 1983]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 366          (1940, 1964] (100.5102, 125]    (3, 6]     (3, Inf)
#> 367          (1926, 1940]        (32, 64]    (3, 6]    (-Inf, 3]
#> 368           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 369           (1994, Inf) (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 370          (1926, 1940]        (32, 64]    (3, 6]    (-Inf, 3]
#> 371           (1994, Inf)      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 372          (-Inf, 1926] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 373          (1926, 1940]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 374           (1994, Inf) (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 375          (1940, 1964]      (125, Inf)    (3, 6]     (3, Inf)
#> 376           (1994, Inf)      (125, Inf)    (3, 6]     (3, Inf)
#> 377          (1964, 1983]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 378          (1940, 1964] (100.5102, 125]    (3, 6]     (3, Inf)
#> 379          (-Inf, 1926]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 380           (1994, Inf)        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 381          (1926, 1940]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 382          (1940, 1964]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 383          (1926, 1940]      (125, Inf)    (3, 6]     (3, Inf)
#> 384           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 385          (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 386          (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 387           (1994, Inf)      (125, Inf) (-Inf, 3]     (3, Inf)
#> 388           (1994, Inf)      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 389          (1940, 1964]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 390          (1964, 1983]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 391          (1964, 1983]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 392          (1940, 1964]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 393          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 394          (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 395          (1940, 1964] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 396          (1964, 1983]      (125, Inf)  (6, Inf)     (3, Inf)
#> 397          (1940, 1964]      (-Inf, 32]    (3, 6]    (-Inf, 3]
#> 398          (1983, 1994]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 399          (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 400          (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 401           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 402          (1926, 1940]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 403          (1983, 1994] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 404          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 405          (1983, 1994]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 406          (1983, 1994]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 407          (1940, 1964]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 408          (1964, 1983] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 409           (1994, Inf)      (125, Inf)    (3, 6]     (3, Inf)
#> 410          (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 411           (1994, Inf)  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 412          (1964, 1983]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 413          (1926, 1940]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 414          (1964, 1983]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 415          (1940, 1964]  (64, 100.5102]    (3, 6]     (3, Inf)
#> 416          (1926, 1940]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 417          (1964, 1983]      (125, Inf)    (3, 6]     (3, Inf)
#> 418          (1964, 1983]        (32, 64]    (3, 6]    (-Inf, 3]
#> 419          (1926, 1940]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 420           (1994, Inf)  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 421          (1940, 1964]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 422          (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 423          (1926, 1940] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 424           (1994, Inf)      (125, Inf)    (3, 6]     (3, Inf)
#> 425          (-Inf, 1926]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 426          (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 427          (1964, 1983] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 428          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 429          (1940, 1964]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 430           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 431          (1926, 1940]  (64, 100.5102]    (3, 6]     (3, Inf)
#> 432           (1994, Inf)        (32, 64]  (6, Inf)    (-Inf, 3]
#> 433           (1994, Inf)  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 434           (1994, Inf)        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 435          (1983, 1994] (100.5102, 125]    (3, 6]     (3, Inf)
#> 436           (1994, Inf)        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 437          (1940, 1964] (100.5102, 125] (-Inf, 3]    (-Inf, 3]
#> 438          (1926, 1940]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 439          (1926, 1940]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 440           (1994, Inf)  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 441          (1964, 1983]      (125, Inf)  (6, Inf)     (3, Inf)
#> 442          (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 443           (1994, Inf)      (125, Inf) (-Inf, 3]     (3, Inf)
#> 444          (1964, 1983]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 445          (1940, 1964] (100.5102, 125]    (3, 6]     (3, Inf)
#> 446          (1940, 1964]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 447           (1994, Inf)      (125, Inf)    (3, 6]     (3, Inf)
#> 448          (1964, 1983]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 449          (1940, 1964]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 450          (1940, 1964]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 451           (1994, Inf)      (125, Inf) (-Inf, 3]     (3, Inf)
#> 452          (1964, 1983]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 453          (1926, 1940] (100.5102, 125]  (6, Inf)    (-Inf, 3]
#> 454          (1940, 1964]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 455           (1994, Inf)      (125, Inf) (-Inf, 3]     (3, Inf)
#> 456          (1940, 1964]  (64, 100.5102] (-Inf, 3]    (-Inf, 3]
#> 457          (1964, 1983]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 458          (1926, 1940] (100.5102, 125]    (3, 6]     (3, Inf)
#> 459           (1994, Inf)        (32, 64]    (3, 6]    (-Inf, 3]
#> 460          (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 461          (1964, 1983]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 462          (1940, 1964] (100.5102, 125] (-Inf, 3]     (3, Inf)
#> 463          (1940, 1964]      (125, Inf)  (6, Inf)     (3, Inf)
#> 464           (1994, Inf)        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 465           (1994, Inf)      (125, Inf)  (6, Inf)     (3, Inf)
#> 466          (1940, 1964] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 467          (1940, 1964]        (32, 64]    (3, 6]    (-Inf, 3]
#> 468          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 469          (1964, 1983]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 470          (1964, 1983]  (64, 100.5102]  (6, Inf)     (3, Inf)
#> 471          (1940, 1964]        (32, 64]    (3, 6]    (-Inf, 3]
#> 472          (1964, 1983]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 473          (1926, 1940]        (32, 64]    (3, 6]    (-Inf, 3]
#> 474          (1964, 1983]        (32, 64]    (3, 6]    (-Inf, 3]
#> 475          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 476          (1926, 1940]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 477          (1983, 1994]  (64, 100.5102]  (6, Inf)    (-Inf, 3]
#> 478          (1983, 1994] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 479          (1940, 1964]        (32, 64] (-Inf, 3]    (-Inf, 3]
#> 480          (1983, 1994]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 481          (1926, 1940] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 482          (1964, 1983]  (64, 100.5102]    (3, 6]    (-Inf, 3]
#> 483          (1964, 1983]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 484          (1983, 1994]        (32, 64]    (3, 6]    (-Inf, 3]
#> 485          (1983, 1994]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 486          (-Inf, 1926]      (125, Inf)  (6, Inf)     (3, Inf)
#> 487          (1983, 1994]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 488          (1964, 1983]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 489          (1940, 1964] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 490          (1926, 1940]      (-Inf, 32] (-Inf, 3]    (-Inf, 3]
#> 491          (1940, 1964]  (64, 100.5102]    (3, 6]     (3, Inf)
#> 492          (1926, 1940]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 493          (1983, 1994]  (64, 100.5102] (-Inf, 3]     (3, Inf)
#> 494          (1983, 1994]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 495          (1940, 1964]      (-Inf, 32]  (6, Inf)    (-Inf, 3]
#> 496          (1983, 1994] (100.5102, 125]    (3, 6]     (3, Inf)
#> 497          (1964, 1983] (100.5102, 125]  (6, Inf)     (3, Inf)
#> 498          (1940, 1964]        (32, 64]  (6, Inf)    (-Inf, 3]
#> 499          (1983, 1994]      (125, Inf) (-Inf, 3]     (3, Inf)
#> 500          (1926, 1940] (100.5102, 125]    (3, 6]     (3, Inf)
#>                                district_new
#> 1                               Srodmiescie
#> 2   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 3   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 4                   Mokotow_Ochota_Zoliborz
#> 5                   Mokotow_Ochota_Zoliborz
#> 6                               Srodmiescie
#> 7                   Mokotow_Ochota_Zoliborz
#> 8   Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 9                               Srodmiescie
#> 10                              Srodmiescie
#> 11                  Mokotow_Ochota_Zoliborz
#> 12  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 13                  Mokotow_Ochota_Zoliborz
#> 14                  Mokotow_Ochota_Zoliborz
#> 15                  Mokotow_Ochota_Zoliborz
#> 16  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 17  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 18  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 19  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 20                  Mokotow_Ochota_Zoliborz
#> 21                  Mokotow_Ochota_Zoliborz
#> 22  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 23                              Srodmiescie
#> 24  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 25                  Mokotow_Ochota_Zoliborz
#> 26                  Mokotow_Ochota_Zoliborz
#> 27  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 28                  Mokotow_Ochota_Zoliborz
#> 29  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 30  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 31                  Mokotow_Ochota_Zoliborz
#> 32  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 33  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 34  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 35  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 36  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 37  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 38  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 39                  Mokotow_Ochota_Zoliborz
#> 40                  Mokotow_Ochota_Zoliborz
#> 41  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 42  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 43  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 44                  Mokotow_Ochota_Zoliborz
#> 45  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 46                              Srodmiescie
#> 47                  Mokotow_Ochota_Zoliborz
#> 48                              Srodmiescie
#> 49                  Mokotow_Ochota_Zoliborz
#> 50  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 51                  Mokotow_Ochota_Zoliborz
#> 52                  Mokotow_Ochota_Zoliborz
#> 53  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 54                  Mokotow_Ochota_Zoliborz
#> 55  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 56  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 57  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 58  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 59  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 60  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 61  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 62  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 63  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 64  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 65                  Mokotow_Ochota_Zoliborz
#> 66                  Mokotow_Ochota_Zoliborz
#> 67                  Mokotow_Ochota_Zoliborz
#> 68  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 69                  Mokotow_Ochota_Zoliborz
#> 70  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 71                  Mokotow_Ochota_Zoliborz
#> 72  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 73  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 74                  Mokotow_Ochota_Zoliborz
#> 75                  Mokotow_Ochota_Zoliborz
#> 76  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 77  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 78  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 79                  Mokotow_Ochota_Zoliborz
#> 80  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 81  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 82  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 83                  Mokotow_Ochota_Zoliborz
#> 84                  Mokotow_Ochota_Zoliborz
#> 85  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 86                  Mokotow_Ochota_Zoliborz
#> 87                              Srodmiescie
#> 88  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 89                  Mokotow_Ochota_Zoliborz
#> 90                  Mokotow_Ochota_Zoliborz
#> 91  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 92                  Mokotow_Ochota_Zoliborz
#> 93                  Mokotow_Ochota_Zoliborz
#> 94                  Mokotow_Ochota_Zoliborz
#> 95  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 96  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 97  Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 98                  Mokotow_Ochota_Zoliborz
#> 99                  Mokotow_Ochota_Zoliborz
#> 100                 Mokotow_Ochota_Zoliborz
#> 101 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 102 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 103 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 104 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 105 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 106 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 107 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 108                 Mokotow_Ochota_Zoliborz
#> 109                 Mokotow_Ochota_Zoliborz
#> 110 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 111 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 112                 Mokotow_Ochota_Zoliborz
#> 113 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 114                             Srodmiescie
#> 115                             Srodmiescie
#> 116 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 117 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 118 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 119 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 120 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 121 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 122 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 123 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 124 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 125 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 126 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 127 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 128 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 129 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 130 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 131 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 132                 Mokotow_Ochota_Zoliborz
#> 133 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 134                 Mokotow_Ochota_Zoliborz
#> 135                             Srodmiescie
#> 136 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 137 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 138 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 139 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 140 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 141                 Mokotow_Ochota_Zoliborz
#> 142 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 143 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 144 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 145                 Mokotow_Ochota_Zoliborz
#> 146 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 147 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 148 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 149 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 150 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 151                 Mokotow_Ochota_Zoliborz
#> 152 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 153                 Mokotow_Ochota_Zoliborz
#> 154                             Srodmiescie
#> 155                 Mokotow_Ochota_Zoliborz
#> 156 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 157 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 158                             Srodmiescie
#> 159 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 160                 Mokotow_Ochota_Zoliborz
#> 161 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 162 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 163                 Mokotow_Ochota_Zoliborz
#> 164                 Mokotow_Ochota_Zoliborz
#> 165 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 166 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 167 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 168 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 169 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 170 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 171 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 172                 Mokotow_Ochota_Zoliborz
#> 173 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 174 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 175 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 176                 Mokotow_Ochota_Zoliborz
#> 177                 Mokotow_Ochota_Zoliborz
#> 178 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 179                 Mokotow_Ochota_Zoliborz
#> 180 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 181 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 182                 Mokotow_Ochota_Zoliborz
#> 183                 Mokotow_Ochota_Zoliborz
#> 184                 Mokotow_Ochota_Zoliborz
#> 185 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 186 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 187 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 188                 Mokotow_Ochota_Zoliborz
#> 189 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 190                 Mokotow_Ochota_Zoliborz
#> 191                 Mokotow_Ochota_Zoliborz
#> 192 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 193 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 194                             Srodmiescie
#> 195                 Mokotow_Ochota_Zoliborz
#> 196                 Mokotow_Ochota_Zoliborz
#> 197 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 198 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 199                 Mokotow_Ochota_Zoliborz
#> 200                 Mokotow_Ochota_Zoliborz
#> 201 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 202                 Mokotow_Ochota_Zoliborz
#> 203 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 204 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 205 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 206 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 207                 Mokotow_Ochota_Zoliborz
#> 208                             Srodmiescie
#> 209 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 210                 Mokotow_Ochota_Zoliborz
#> 211 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 212                             Srodmiescie
#> 213 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 214 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 215 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 216 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 217                 Mokotow_Ochota_Zoliborz
#> 218                 Mokotow_Ochota_Zoliborz
#> 219 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 220                 Mokotow_Ochota_Zoliborz
#> 221 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 222                 Mokotow_Ochota_Zoliborz
#> 223                 Mokotow_Ochota_Zoliborz
#> 224 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 225                 Mokotow_Ochota_Zoliborz
#> 226                 Mokotow_Ochota_Zoliborz
#> 227 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 228 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 229                 Mokotow_Ochota_Zoliborz
#> 230 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 231                             Srodmiescie
#> 232                 Mokotow_Ochota_Zoliborz
#> 233 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 234                 Mokotow_Ochota_Zoliborz
#> 235 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 236                 Mokotow_Ochota_Zoliborz
#> 237 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 238 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 239 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 240 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 241 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 242                             Srodmiescie
#> 243 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 244                 Mokotow_Ochota_Zoliborz
#> 245 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 246 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 247                             Srodmiescie
#> 248 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 249                             Srodmiescie
#> 250 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 251 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 252                 Mokotow_Ochota_Zoliborz
#> 253 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 254                 Mokotow_Ochota_Zoliborz
#> 255 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 256 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 257                             Srodmiescie
#> 258 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 259 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 260                 Mokotow_Ochota_Zoliborz
#> 261 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 262                 Mokotow_Ochota_Zoliborz
#> 263 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 264                 Mokotow_Ochota_Zoliborz
#> 265                 Mokotow_Ochota_Zoliborz
#> 266                             Srodmiescie
#> 267 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 268 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 269                 Mokotow_Ochota_Zoliborz
#> 270 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 271 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 272                 Mokotow_Ochota_Zoliborz
#> 273 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 274 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 275 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 276 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 277                 Mokotow_Ochota_Zoliborz
#> 278 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 279 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 280                 Mokotow_Ochota_Zoliborz
#> 281 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 282                 Mokotow_Ochota_Zoliborz
#> 283                 Mokotow_Ochota_Zoliborz
#> 284 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 285 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 286                 Mokotow_Ochota_Zoliborz
#> 287 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 288                 Mokotow_Ochota_Zoliborz
#> 289                             Srodmiescie
#> 290 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 291                 Mokotow_Ochota_Zoliborz
#> 292 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 293                             Srodmiescie
#> 294 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 295 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 296                 Mokotow_Ochota_Zoliborz
#> 297                 Mokotow_Ochota_Zoliborz
#> 298 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 299                             Srodmiescie
#> 300 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 301 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 302 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 303 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 304 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 305                 Mokotow_Ochota_Zoliborz
#> 306 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 307                 Mokotow_Ochota_Zoliborz
#> 308 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 309 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 310 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 311 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 312 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 313 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 314                             Srodmiescie
#> 315                             Srodmiescie
#> 316                 Mokotow_Ochota_Zoliborz
#> 317 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 318 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 319 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 320 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 321                             Srodmiescie
#> 322 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 323 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 324                             Srodmiescie
#> 325                             Srodmiescie
#> 326                 Mokotow_Ochota_Zoliborz
#> 327 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 328 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 329                 Mokotow_Ochota_Zoliborz
#> 330                 Mokotow_Ochota_Zoliborz
#> 331                 Mokotow_Ochota_Zoliborz
#> 332 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 333                 Mokotow_Ochota_Zoliborz
#> 334 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 335 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 336                 Mokotow_Ochota_Zoliborz
#> 337                 Mokotow_Ochota_Zoliborz
#> 338 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 339 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 340 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 341                 Mokotow_Ochota_Zoliborz
#> 342                 Mokotow_Ochota_Zoliborz
#> 343                 Mokotow_Ochota_Zoliborz
#> 344                             Srodmiescie
#> 345                 Mokotow_Ochota_Zoliborz
#> 346                 Mokotow_Ochota_Zoliborz
#> 347                 Mokotow_Ochota_Zoliborz
#> 348 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 349 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 350 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 351 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 352                 Mokotow_Ochota_Zoliborz
#> 353                 Mokotow_Ochota_Zoliborz
#> 354                 Mokotow_Ochota_Zoliborz
#> 355 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 356                             Srodmiescie
#> 357 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 358                 Mokotow_Ochota_Zoliborz
#> 359                 Mokotow_Ochota_Zoliborz
#> 360                 Mokotow_Ochota_Zoliborz
#> 361                             Srodmiescie
#> 362 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 363                             Srodmiescie
#> 364                 Mokotow_Ochota_Zoliborz
#> 365                 Mokotow_Ochota_Zoliborz
#> 366 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 367                 Mokotow_Ochota_Zoliborz
#> 368                             Srodmiescie
#> 369                 Mokotow_Ochota_Zoliborz
#> 370 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 371                 Mokotow_Ochota_Zoliborz
#> 372                             Srodmiescie
#> 373 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 374 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 375 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 376                 Mokotow_Ochota_Zoliborz
#> 377 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 378 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 379 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 380 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 381 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 382                 Mokotow_Ochota_Zoliborz
#> 383                 Mokotow_Ochota_Zoliborz
#> 384 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 385 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 386 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 387 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 388                 Mokotow_Ochota_Zoliborz
#> 389 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 390 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 391 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 392                 Mokotow_Ochota_Zoliborz
#> 393 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 394                 Mokotow_Ochota_Zoliborz
#> 395 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 396                 Mokotow_Ochota_Zoliborz
#> 397                             Srodmiescie
#> 398                 Mokotow_Ochota_Zoliborz
#> 399                 Mokotow_Ochota_Zoliborz
#> 400 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 401                             Srodmiescie
#> 402                 Mokotow_Ochota_Zoliborz
#> 403 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 404 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 405 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 406                 Mokotow_Ochota_Zoliborz
#> 407                             Srodmiescie
#> 408                             Srodmiescie
#> 409                 Mokotow_Ochota_Zoliborz
#> 410 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 411 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 412 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 413 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 414 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 415                             Srodmiescie
#> 416 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 417 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 418 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 419 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 420 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 421 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 422 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 423 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 424 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 425 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 426 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 427                 Mokotow_Ochota_Zoliborz
#> 428 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 429 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 430 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 431 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 432                 Mokotow_Ochota_Zoliborz
#> 433                 Mokotow_Ochota_Zoliborz
#> 434 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 435 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 436 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 437                 Mokotow_Ochota_Zoliborz
#> 438                             Srodmiescie
#> 439                 Mokotow_Ochota_Zoliborz
#> 440 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 441 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 442                 Mokotow_Ochota_Zoliborz
#> 443                 Mokotow_Ochota_Zoliborz
#> 444                 Mokotow_Ochota_Zoliborz
#> 445 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 446                             Srodmiescie
#> 447                 Mokotow_Ochota_Zoliborz
#> 448 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 449 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 450 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 451                 Mokotow_Ochota_Zoliborz
#> 452                 Mokotow_Ochota_Zoliborz
#> 453                 Mokotow_Ochota_Zoliborz
#> 454                 Mokotow_Ochota_Zoliborz
#> 455 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 456                 Mokotow_Ochota_Zoliborz
#> 457 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 458                 Mokotow_Ochota_Zoliborz
#> 459                 Mokotow_Ochota_Zoliborz
#> 460 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 461 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 462 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 463                 Mokotow_Ochota_Zoliborz
#> 464                 Mokotow_Ochota_Zoliborz
#> 465 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 466 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 467                             Srodmiescie
#> 468 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 469                 Mokotow_Ochota_Zoliborz
#> 470                 Mokotow_Ochota_Zoliborz
#> 471                             Srodmiescie
#> 472 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 473                 Mokotow_Ochota_Zoliborz
#> 474 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 475 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 476 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 477                 Mokotow_Ochota_Zoliborz
#> 478 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 479                 Mokotow_Ochota_Zoliborz
#> 480 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 481 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 482 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 483 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 484 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 485 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 486                 Mokotow_Ochota_Zoliborz
#> 487 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 488 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 489 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 490                             Srodmiescie
#> 491 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 492 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 493                 Mokotow_Ochota_Zoliborz
#> 494                 Mokotow_Ochota_Zoliborz
#> 495 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 496 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 497 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 498 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 499 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola
#> 500 Bemowo_Bielany_Praga_Ursus_Ursynow_Wola