-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathAirBnB_Valoraciones.csv
We can't make this file beautiful and searchable because it's too large.
11280 lines (11280 loc) · 678 KB
/
AirBnB_Valoraciones.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
id,host_id,room_type,price,minimum_nights,number_of_reviews,last_review,reviews_per_month,calculated_host_listings_count,availability_365
18666,71615,Entire home/apt,130,3,1,10/10/2015,0.02,28,91
18674,71615,Entire home/apt,60,1,7,07/04/2019,0.1,28,219
21605,82522,Private room,33,2,107,23/01/2019,3.01,2,254
23197,90417,Entire home/apt,200,3,35,01/01/2019,0.36,2,293
25786,108310,Private room,36,1,224,07/11/2018,2.12,1,100
31377,134698,Private room,42,3,4,12/03/2018,0.08,3,178
31380,134698,Private room,53,3,39,29/12/2018,0.84,3,188
31958,136853,Entire home/apt,62,1,159,21/03/2019,1.6,41,224
32471,136853,Entire home/apt,72,1,70,16/03/2019,0.7,41,212
32615,141199,Private room,30,29,19,12/05/2014,0.18,1,110
32711,135703,Entire home/apt,140,2,50,29/03/2019,0.53,13,282
34241,73163,Private room,85,4,8,15/07/2013,0.08,2,303
34981,73163,Entire home/apt,290,5,132,31/03/2019,1.27,2,207
35379,152232,Private room,40,2,233,01/04/2019,2.7,4,239
35388,152232,Private room,30,2,194,07/04/2019,2.03,4,253
35390,152232,Private room,30,2,194,06/04/2019,2.31,4,295
35392,152232,Private room,45,2,164,07/04/2019,2.95,4,263
36763,158596,Private room,33,2,51,10/11/2018,0.56,1,338
40983,177617,Entire home/apt,95,3,120,10/04/2019,1.26,5,244
46153,90417,Entire home/apt,43,180,2,30/09/2018,0.02,2,190
49968,135703,Entire home/apt,140,2,33,23/03/2019,0.35,13,283
50066,135703,Entire home/apt,180,2,47,23/03/2019,0.5,13,246
58512,280070,Entire home/apt,115,7,361,28/03/2019,3.7,1,177
61444,297545,Entire home/apt,105,2,41,28/02/2019,0.6,3,246
66037,323105,Entire home/apt,190,3,96,24/03/2019,0.97,2,257
67065,136853,Entire home/apt,75,1,65,01/03/2019,0.69,41,276
68547,340570,Private room,47,2,65,20/03/2019,0.67,1,347
70099,353987,Private room,49,2,315,05/04/2019,3.18,1,262
71520,366428,Entire home/apt,250,7,1,23/06/2011,0.01,1,265
71553,366654,Entire home/apt,110,2,47,07/03/2019,0.48,9,253
71603,366654,Entire home/apt,390,2,36,16/06/2018,0.36,9,362
71736,368317,Entire home/apt,100,32,11,14/07/2016,0.11,6,364
72436,375625,Entire home/apt,1000,3,189,08/04/2019,3.34,5,351
72793,368317,Entire home/apt,45,32,2,27/08/2014,0.02,6,365
72794,368317,Entire home/apt,45,32,8,23/08/2014,0.09,6,365
73455,383697,Entire home/apt,148,1,88,25/03/2019,1.23,16,243
73683,135703,Entire home/apt,300,2,142,07/04/2019,1.49,13,276
73693,297545,Entire home/apt,65,2,36,20/03/2019,0.6,3,266
74562,382031,Private room,60,3,174,25/03/2019,1.77,1,295
75003,396363,Entire home/apt,166,2,8,19/12/2018,0.08,97,310
75411,400154,Entire home/apt,125,3,25,31/03/2019,0.28,5,114
80004,431839,Entire home/apt,107,4,105,02/04/2019,1.09,1,187
83283,700165,Private room,58,3,94,17/03/2019,0.97,4,43
89756,488117,Entire home/apt,350,6,15,31/08/2018,0.19,6,290
89776,488151,Entire home/apt,65,3,285,01/04/2019,3.16,1,196
95560,494228,Private room,15,2,465,08/03/2019,4.85,2,0
95719,509260,Private room,53,2,193,07/04/2019,1.99,1,275
97529,497450,Entire home/apt,45,60,62,05/11/2016,0.69,1,99
100256,527201,Entire home/apt,40,32,50,01/01/2019,0.6,1,186
107437,556626,Entire home/apt,200,3,39,17/03/2019,0.41,1,300
109462,396363,Entire home/apt,95,2,1,08/03/2019,0.88,97,331
110041,396363,Entire home/apt,99,2,8,13/03/2019,0.1,97,317
110098,396363,Entire home/apt,90,2,13,17/03/2019,0.14,97,253
112538,567180,Entire home/apt,200,4,78,30/07/2017,0.82,5,64
119546,603336,Private room,75,3,275,02/04/2019,2.87,1,255
128463,635253,Private room,40,3,236,02/04/2019,2.55,1,203
130227,641496,Private room,55,2,89,01/04/2019,1.48,1,148
135513,664196,Entire home/apt,80,2,106,24/03/2019,1.16,1,295
136670,610674,Private room,35,3,113,19/03/2019,1.23,8,312
144471,700165,Private room,59,3,34,23/10/2018,0.36,4,0
147275,711907,Private room,14,4,76,04/03/2019,1.6,1,258
154281,742068,Private room,50,3,252,09/04/2019,2.75,2,49
154437,474355,Private room,39,7,68,19/03/2019,0.73,1,113
158238,759411,Entire home/apt,150,2,105,28/02/2019,1.12,3,324
163490,713364,Entire home/apt,160,3,138,31/03/2019,1.66,1,270
164456,784341,Private room,60,10,96,27/02/2019,1.06,2,130
164897,786393,Entire home/apt,182,90,1,22/07/2011,0.01,2,344
171646,400154,Entire home/apt,105,3,33,08/04/2019,0.46,5,143
171816,400154,Entire home/apt,115,3,7,08/04/2019,0.1,5,168
179619,860071,Private room,27,3,50,28/09/2018,0.54,3,99
180293,863772,Private room,50,2,1,05/05/2012,0.01,1,240
181824,852032,Private room,49,2,240,24/03/2019,2.57,1,184
184373,829660,Private room,70,1,66,03/01/2019,0.82,2,328
184516,784341,Private room,76,5,36,05/11/2018,0.39,2,166
186221,494228,Private room,16,2,593,06/03/2019,6.38,2,0
186540,896554,Entire home/apt,41,32,9,03/03/2019,0.27,1,85
186542,896372,Private room,33,2,49,20/06/2013,0.53,1,10
186598,896690,Private room,45,2,342,02/04/2019,3.73,1,215
188267,366654,Entire home/apt,290,2,73,30/12/2018,0.8,9,293
190348,919480,Private room,46,7,1,09/06/2016,0.03,1,0
191303,829660,Private room,85,1,69,31/03/2019,0.84,2,138
193923,939590,Private room,20,3,114,01/04/2019,1.23,1,239
194460,944355,Private room,20,2,285,08/04/2019,3.17,1,189
196021,953719,Private room,310,5,224,31/03/2019,2.44,2,216
196196,567180,Entire home/apt,220,2,87,17/02/2019,0.94,5,105
198958,971768,Private room,190,1,52,16/09/2018,0.61,14,197
199422,971768,Private room,75,1,55,03/04/2019,0.6,14,143
199794,440825,Entire home/apt,35,1,79,17/12/2018,1.15,1,175
201958,177617,Entire home/apt,100,32,23,01/12/2018,0.25,5,167
206122,1013855,Private room,120,3,150,31/03/2019,1.68,7,295
206167,1014050,Private room,120,3,68,01/10/2018,0.75,1,156
206846,612665,Entire home/apt,98,31,61,03/01/2019,0.7,8,124
208684,1027356,Entire home/apt,49,1,299,23/03/2019,3.23,1,197
209673,1033366,Entire home/apt,77,2,221,30/03/2019,2.9,1,255
213296,1100014,Entire home/apt,40,3,260,28/02/2019,3.1,3,284
213368,1037730,Entire home/apt,39,2,44,25/09/2018,0.49,2,329
213581,1100014,Private room,32,3,210,18/03/2019,2.4,3,265
214970,1110014,Entire home/apt,35,4,117,19/03/2019,1.41,1,236
216699,1118232,Entire home/apt,42,4,283,28/02/2019,3.2,1,108
218503,1130143,Entire home/apt,30,3,41,16/09/2018,0.49,2,267
232400,4369049,Private room,95,3,249,11/03/2019,2.9,2,226
233739,1224008,Entire home/apt,40,2,93,09/07/2018,1.09,1,0
234375,1227290,Entire home/apt,105,7,26,06/04/2019,0.77,1,139
239492,1255733,Entire home/apt,44,4,169,17/03/2019,1.89,2,27
239821,1257705,Entire home/apt,120,10,25,06/04/2018,0.5,3,241
242335,15884961,Entire home/apt,55,33,4,21/12/2015,0.05,11,253
250016,1310304,Private room,65,32,1,10/07/2012,0.01,17,198
251424,1318630,Entire home/apt,45,2,47,26/02/2019,0.8,2,221
252232,1298586,Private room,83,2,90,19/03/2019,1.04,6,198
255195,1310304,Entire home/apt,41,32,12,11/06/2014,0.14,17,271
256354,1348378,Entire home/apt,23,30,42,02/03/2019,0.49,2,200
256628,742068,Private room,40,3,218,08/04/2019,2.47,2,47
256677,1350468,Private room,50,3,126,06/04/2019,1.5,1,306
256982,1352184,Private room,40,3,87,02/04/2019,1.03,1,313
261750,1369675,Entire home/apt,350,2,11,14/10/2018,0.13,4,326
264125,1377744,Entire home/apt,89,4,203,01/03/2019,2.35,2,237
264621,1367370,Entire home/apt,229,3,46,03/03/2019,0.51,3,6
265491,1392322,Private room,80,3,142,28/03/2019,1.71,1,43
265607,1367370,Entire home/apt,175,3,40,30/03/2019,0.49,3,265
267816,1404293,Entire home/apt,900,2,20,07/04/2019,0.24,2,341
268017,1405013,Entire home/apt,194,2,7,17/08/2018,0.08,16,248
268022,1405013,Entire home/apt,195,2,6,22/02/2019,0.22,16,256
268417,1406951,Private room,36,3,170,01/04/2019,2.53,1,130
269467,1411775,Private room,110,6,32,30/03/2019,2.06,2,277
270050,1414100,Private room,48,1,394,26/03/2019,4.39,2,50
271996,155686,Private room,51,31,13,15/08/2018,0.14,3,209
272282,1425070,Private room,290,3,248,04/04/2019,3.01,1,197
273229,1429552,Entire home/apt,72,14,118,01/03/2019,1.4,1,137
273932,1432835,Entire home/apt,100,3,146,24/03/2019,1.67,38,199
275336,1435464,Entire home/apt,130,3,77,07/04/2019,0.95,20,311
275346,1435464,Entire home/apt,215,3,37,30/12/2018,0.45,20,355
275350,1435464,Entire home/apt,100,32,46,21/11/2018,0.74,20,316
275889,1435464,Entire home/apt,72,32,9,20/10/2018,0.11,20,180
276324,1443815,Entire home/apt,106,5,41,04/04/2019,0.48,1,254
276527,1444707,Entire home/apt,60,2,292,31/03/2019,3.35,2,170
278036,1451449,Entire home/apt,45,5,151,08/04/2019,1.77,6,17
279439,1457147,Entire home/apt,30,2,116,29/03/2019,1.33,3,21
281978,1451449,Entire home/apt,45,5,104,23/03/2019,1.17,6,21
281985,1451449,Entire home/apt,30,5,138,22/03/2019,1.56,6,35
282679,1354169,Entire home/apt,225,4,23,16/03/2019,0.28,3,269
283231,1475411,Entire home/apt,85,1,164,31/03/2019,1.88,1,248
286105,1489008,Private room,40,30,1,03/06/2014,0.02,1,314
288034,1447144,Entire home/apt,80,3,15,05/02/2019,0.18,74,327
290592,1377744,Entire home/apt,69,4,201,26/03/2019,2.37,2,223
295200,612665,Entire home/apt,110,3,134,10/03/2019,1.53,8,146
297066,1541784,Private room,126,1,511,05/04/2019,5.9,1,314
302179,1432835,Private room,90,3,133,24/03/2019,1.63,38,184
302440,942210,Private room,45,32,19,08/09/2018,0.22,4,261
305213,1570247,Entire home/apt,119,5,230,06/04/2019,2.78,1,315
308166,1561612,Private room,135,3,145,06/04/2019,1.68,1,43
315769,1994100,Entire home/apt,100,3,15,15/03/2019,0.17,3,261
318865,1608447,Private room,119,3,182,25/03/2019,2.17,1,201
323854,1657312,Entire home/apt,30,1,21,29/07/2014,0.24,1,0
324726,1661612,Entire home/apt,71,32,11,31/08/2014,0.19,1,0
327133,1451449,Entire home/apt,28,5,156,02/04/2019,1.8,6,20
330248,880805,Entire home/apt,50,2,11,07/08/2015,0.13,1,335
330723,1687383,Entire home/apt,30,14,48,05/04/2019,0.58,2,207
330766,1687524,Entire home/apt,120,5,169,06/07/2018,2,1,25
330957,893805,Entire home/apt,111,2,345,05/04/2019,3.99,7,306
331026,440881,Entire home/apt,24,4,152,03/03/2019,1.79,2,230
333190,1697782,Entire home/apt,18,3,189,07/04/2019,2.28,3,3
335861,1221038,Entire home/apt,95,1,75,25/02/2019,0.91,2,315
337755,1716315,Entire home/apt,95,3,3,13/03/2017,0.05,7,0
342641,1738696,Entire home/apt,90,2,60,09/10/2018,0.89,1,280
343622,1743695,Private room,115,5,83,17/12/2018,1.66,1,284
343859,1744516,Entire home/apt,137,3,6,03/03/2018,0.11,19,302
343861,1744516,Private room,95,3,14,24/03/2019,0.3,19,320
343864,1744516,Private room,139,3,9,17/03/2019,0.15,19,300
343866,1744516,Entire home/apt,89,3,25,09/03/2019,0.34,19,258
346018,1753990,Entire home/apt,60,2,15,28/10/2018,0.18,1,283
351395,1435464,Private room,125,3,26,09/04/2019,0.37,20,300
352772,1786501,Private room,145,2,82,07/04/2019,1.32,1,257
353640,1791076,Entire home/apt,110,2,93,18/03/2019,1.54,2,198
357576,1809535,Entire home/apt,95,1,159,27/03/2019,1.93,2,192
357958,1809119,Entire home/apt,57,1,105,08/04/2019,1.41,1,85
359277,1818044,Entire home/apt,40,2,123,09/04/2019,1.44,3,247
359841,1820272,Private room,60,2,265,06/04/2019,3.19,6,196
363601,1837053,Entire home/apt,60,32,26,23/08/2018,0.32,3,277
364030,1839136,Entire home/apt,130,3,242,16/03/2019,2.81,1,254
365147,440881,Entire home/apt,39,3,121,04/02/2019,1.49,2,99
365911,1260560,Entire home/apt,119,3,56,24/03/2019,0.69,4,289
374491,1818044,Entire home/apt,40,2,116,07/04/2019,1.37,3,270
374561,1818044,Entire home/apt,55,2,105,17/03/2019,1.25,3,288
377161,1444707,Entire home/apt,60,2,295,29/03/2019,3.48,2,178
379868,1906952,Entire home/apt,58,30,269,24/03/2019,3.23,2,49
380421,1414100,Entire home/apt,48,1,369,27/03/2019,4.31,2,44
380903,1725307,Entire home/apt,75,30,7,18/09/2018,0.08,2,322
382000,1915191,Entire home/apt,110,3,155,31/03/2019,1.85,1,225
384063,1447144,Private room,90,1,8,19/12/2018,0.1,74,325
384155,1751133,Private room,64,32,68,24/03/2019,0.82,1,277
384464,674212,Entire home/apt,160,2,54,15/01/2019,0.64,8,170
384867,1926968,Entire home/apt,20,2,213,25/03/2019,2.55,2,25
385049,3775349,Private room,200,2,170,07/04/2019,1.98,25,168
393717,1968590,Entire home/apt,83,2,262,31/03/2019,3.15,1,272
394692,1926968,Entire home/apt,22,2,285,27/03/2019,3.39,2,48
399772,1995385,Entire home/apt,145,1,18,05/03/2015,0.21,1,90
401481,2004002,Entire home/apt,38,2,327,30/03/2019,3.84,2,154
401990,2006133,Private room,50,2,91,21/03/2019,1.1,2,237
402633,2009370,Entire home/apt,250,3,178,04/04/2019,2.69,3,113
402657,1117598,Private room,75,3,207,22/03/2019,2.56,1,137
408127,2032512,Entire home/apt,25,3,2,01/11/2016,0.07,1,278
408599,2034854,Entire home/apt,75,1,287,24/03/2019,3.37,1,301
410159,2041901,Entire home/apt,125,3,86,28/02/2019,1.02,16,198
412649,542867,Entire home/apt,67,2,154,19/03/2019,1.82,2,252
414786,1451449,Entire home/apt,28,5,140,09/04/2019,1.65,6,13
415848,865887,Entire home/apt,195,3,57,03/01/2019,0.68,2,136
415892,366654,Entire home/apt,460,2,56,25/04/2018,0.66,9,365
417239,2074943,Entire home/apt,97,30,92,12/02/2019,1.29,1,263
417814,2072631,Private room,33,2,46,19/03/2019,1.05,2,257
424137,2108468,Entire home/apt,200,1,18,27/07/2018,0.24,9,165
425639,2116153,Private room,400,5,37,01/03/2019,0.63,1,271
430585,2108468,Private room,200,2,15,09/08/2018,0.21,9,78
431331,400416,Private room,47,32,10,02/11/2017,0.22,6,312
432482,898600,Entire home/apt,180,2,183,05/04/2019,2.21,1,256
437886,2004002,Entire home/apt,38,2,224,07/04/2019,2.67,2,3
438102,2176121,Private room,38,3,101,11/03/2019,1.2,2,297
438123,134698,Private room,70,2,37,22/03/2019,0.82,3,183
439057,2181314,Entire home/apt,126,2,208,02/04/2019,2.51,1,241
440427,2041901,Entire home/apt,120,3,66,17/03/2019,0.84,16,182
440840,1457147,Private room,30,2,87,05/03/2019,1.06,3,41
440841,1457147,Entire home/apt,30,2,62,29/03/2019,0.9,3,29
443110,2201772,Entire home/apt,250,4,37,01/09/2017,0.44,9,358
443222,2202284,Private room,129,3,74,16/03/2019,0.9,8,197
443909,2204578,Entire home/apt,60,4,269,05/04/2019,3.36,1,66
446665,2218343,Entire home/apt,39,1,45,28/02/2019,0.61,2,22
449854,1267680,Entire home/apt,120,3,95,27/03/2019,1.14,4,221
451758,1267680,Private room,100,3,93,08/03/2019,1.12,4,122
455623,2264628,Private room,55,3,7,20/09/2017,0.09,1,283
456333,2268672,Entire home/apt,28,1,43,01/11/2017,0.52,1,0
457195,1405013,Private room,214,2,5,12/12/2018,0.17,16,181
461943,2293257,Entire home/apt,45,3,37,27/03/2019,1.64,2,7
462012,2296262,Entire home/apt,30,2,21,28/06/2018,0.25,1,277
462062,16569867,Entire home/apt,37,3,93,07/04/2019,1.65,2,63
462332,2293257,Entire home/apt,25,3,84,29/03/2019,2.21,2,0
462557,2298462,Private room,33,2,58,01/04/2019,0.72,1,211
463880,2304846,Entire home/apt,90,2,92,25/03/2019,1.14,3,182
468639,2325968,Entire home/apt,33,3,115,12/02/2019,1.4,2,1
468912,1923383,Entire home/apt,35,2,49,18/03/2019,2.18,1,226
469177,1432835,Entire home/apt,90,3,145,11/03/2019,1.78,38,157
471669,1481173,Entire home/apt,80,1,58,27/02/2019,0.81,1,335
472062,2337603,Entire home/apt,175,3,24,02/01/2019,0.61,5,284
473395,2337603,Entire home/apt,180,4,43,09/01/2019,0.86,5,106
473459,2337603,Private room,200,5,17,07/04/2019,0.46,5,150
474669,2353086,Entire home/apt,105,3,48,31/03/2019,0.59,1,275
475771,1348524,Entire home/apt,35,35,5,21/12/2017,0.06,2,234
477256,2365702,Entire home/apt,15,4,179,03/03/2019,2.15,2,344
478173,1724144,Private room,137,3,40,11/03/2019,0.48,1,245
478616,726695,Entire home/apt,150,1,2,09/09/2018,0.04,1,333
478951,135703,Private room,180,2,73,04/02/2019,0.89,13,289
481739,2320210,Entire home/apt,136,3,8,18/02/2019,0.26,48,206
484390,2397234,Entire home/apt,25,31,87,21/02/2019,1.04,3,102
485011,2400841,Entire home/apt,58,2,80,05/04/2019,1.07,2,39
487233,2411278,Private room,160,4,185,14/02/2019,2.29,2,160
488341,9535595,Entire home/apt,30,3,237,10/03/2019,2.84,1,253
490517,2320210,Private room,137,3,18,28/02/2019,0.53,48,222
490742,2325968,Entire home/apt,31,4,25,27/03/2019,1.37,2,2
490803,2320210,Entire home/apt,155,3,40,12/03/2019,0.67,48,48
490853,2426746,Private room,19,1,420,03/04/2019,5.03,4,304
492963,2436080,Entire home/apt,30,1,1,18/03/2019,1,1,0
493122,2365702,Private room,14,4,174,11/03/2019,2.09,2,339
494834,2320210,Entire home/apt,116,3,17,27/03/2019,0.5,48,28
496997,1432835,Private room,140,3,182,05/01/2019,2.2,38,174
497545,1432835,Entire home/apt,130,3,134,23/03/2019,1.63,38,198
498416,1310304,Private room,39,32,7,18/06/2013,0.09,17,275
498632,71615,Entire home/apt,65,1,43,02/04/2019,0.73,28,223
503765,2484443,Private room,150,7,57,30/03/2019,0.7,1,53
504653,2488904,Private room,35,2,343,04/04/2019,4.15,3,252
504860,2488904,Private room,35,2,314,17/03/2019,4.12,3,260
507074,2042948,Entire home/apt,53,2,336,04/04/2019,4.08,1,21
507667,2176121,Private room,50,3,78,10/03/2019,1.12,2,192
507972,2303967,Private room,500,4,44,07/10/2018,0.64,1,131
508212,2504689,Private room,138,4,45,23/03/2019,0.54,1,28
508685,2488904,Entire home/apt,25,2,256,31/03/2019,3.31,3,277
510923,2517389,Entire home/apt,140,3,23,14/08/2017,0.32,2,221
511739,1447144,Entire home/apt,76,1,4,22/10/2014,0.05,74,345
512368,1687383,Private room,30,13,41,04/07/2018,0.52,2,286
512666,488117,Entire home/apt,210,6,55,30/03/2019,0.75,6,271
512737,488117,Private room,140,6,15,18/03/2019,0.21,6,277
514572,2534420,Entire home/apt,172,3,52,18/03/2019,1.19,1,235
515724,2540353,Entire home/apt,38,3,125,07/04/2019,1.74,1,317
515729,2540372,Entire home/apt,68,2,3,12/05/2018,0.09,1,360
516102,1332544,Private room,46,2,46,11/03/2019,0.58,1,18
516340,674212,Private room,165,2,64,05/02/2018,0.77,8,8
517407,1093718,Private room,234,2,58,04/04/2019,0.71,9,77
518247,2551150,Private room,135,2,50,22/08/2017,0.63,1,307
519566,1206797,Private room,40,2,31,03/10/2017,0.38,1,283
519631,1009636,Entire home/apt,198,1,359,04/04/2019,5.09,1,227
520389,1432835,Private room,150,3,168,18/03/2019,2.05,38,144
521605,2565364,Entire home/apt,76,1,524,01/04/2019,6.33,1,76
522705,2570705,Entire home/apt,81,4,93,24/03/2019,1.37,1,219
522987,1697782,Entire home/apt,18,3,206,02/04/2019,2.5,3,0
524729,2579651,Entire home/apt,90,31,174,12/04/2018,2.1,11,252
526016,2585816,Private room,35,3,87,08/04/2019,4.04,2,107
526094,2586242,Entire home/apt,45,1,36,28/02/2019,0.61,2,39
527183,2590800,Private room,35,7,4,11/10/2015,0.09,1,298
528979,2598629,Entire home/apt,45,2,67,06/04/2019,1.04,2,290
529106,197737,Entire home/apt,80,4,25,20/03/2019,0.35,2,56
531195,2608724,Entire home/apt,999,3,68,26/03/2019,0.82,3,320
534410,2626568,Entire home/apt,149,3,111,31/03/2019,1.59,1,275
534550,2608724,Entire home/apt,999,3,25,07/04/2019,0.31,3,279
536470,2635504,Private room,150,3,64,31/08/2018,1.07,1,222
537176,2638282,Entire home/apt,90,3,285,29/03/2019,3.51,1,202
543342,177617,Private room,115,3,151,01/04/2019,1.83,5,226
543728,2555053,Private room,100,4,164,13/03/2019,2.01,1,268
544995,2556699,Entire home/apt,249,3,46,18/03/2019,0.57,1,235
545207,2680490,Private room,65,1,307,25/03/2019,3.77,1,113
546165,2685251,Entire home/apt,65,3,58,09/12/2018,0.71,1,24
547170,2320210,Entire home/apt,180,3,1,20/01/2019,0.37,48,217
548052,1447144,Private room,76,1,3,20/09/2018,0.33,74,332
548085,1447144,Private room,80,1,2,01/06/2015,0.03,74,356
551339,2320210,Entire home/apt,90,3,1,01/03/2018,0.07,48,220
554299,1221038,Private room,40,32,11,03/11/2013,0.14,2,268
554955,368317,Entire home/apt,100,32,1,21/08/2013,0.01,6,364
556255,1474565,Entire home/apt,34,5,147,07/04/2019,1.79,3,23
556979,2736874,Private room,180,2,173,24/03/2019,2.14,18,306
557772,2741652,Entire home/apt,70,31,64,09/11/2018,0.9,4,318
558366,2745490,Entire home/apt,27,3,33,17/03/2019,0.47,2,28
558549,1451449,Entire home/apt,44,5,132,08/04/2019,1.64,6,19
558651,2201772,Entire home/apt,320,3,27,24/07/2018,0.33,9,343
558886,2747795,Entire home/apt,111,3,94,22/03/2019,1.29,1,251
559930,1697782,Private room,25,3,214,08/04/2019,2.61,3,1
562020,368317,Entire home/apt,45,1,3,23/04/2016,0.05,6,364
562169,2764476,Entire home/apt,100,3,5,26/09/2017,0.24,1,0
562807,1391607,Entire home/apt,100,2,26,28/02/2019,0.55,95,266
563131,2769482,Private room,55,3,170,02/01/2019,2.07,1,0
563971,2773231,Private room,70,1,359,04/04/2019,4.53,1,277
564809,2598629,Private room,45,3,45,26/10/2018,0.6,2,224
567855,2793529,Private room,69,3,112,06/04/2019,1.5,1,238
567962,2794626,Shared room,50,26,22,06/12/2018,0.28,1,270
568129,2795488,Private room,45,2,49,17/03/2019,0.64,2,326
568185,2795488,Entire home/apt,45,2,52,07/04/2019,0.65,2,350
568432,1809535,Entire home/apt,53,1,272,08/04/2019,4.44,2,214
569527,1367370,Entire home/apt,119,3,48,29/03/2019,0.59,3,312
569610,2700806,Entire home/apt,120,4,40,28/02/2019,0.49,1,45
572646,265165,Entire home/apt,27,32,42,30/03/2019,0.58,1,303
572833,2818497,Entire home/apt,100,3,59,27/03/2019,1.1,1,241
575139,1354169,Entire home/apt,250,5,10,01/03/2019,0.22,3,253
575144,1354169,Entire home/apt,265,4,25,03/01/2019,0.35,3,250
576046,2833463,Entire home/apt,32,4,40,03/01/2019,1.23,2,183
576383,2667830,Entire home/apt,90,2,102,11/03/2019,1.29,1,58
576728,2836824,Entire home/apt,149,6,25,02/01/2019,0.32,1,125
578180,2843953,Entire home/apt,30,7,10,08/08/2014,0.12,1,0
578558,2846323,Entire home/apt,160,3,45,08/04/2019,0.58,1,215
582364,2660281,Entire home/apt,175,2,277,20/03/2019,3.38,1,202
584348,2879377,Private room,85,3,101,30/03/2019,1.23,1,207
585762,1405013,Private room,219,2,15,01/09/2018,0.43,16,212
587203,2895402,Entire home/apt,35,2,110,03/11/2018,1.52,1,140
588268,2738055,Private room,100,6,201,21/03/2019,2.48,1,321
588996,2843608,Entire home/apt,95,3,192,03/04/2019,2.58,1,238
590032,2546413,Entire home/apt,25,3,42,08/04/2019,0.58,2,74
590503,6057270,Entire home/apt,69,2,427,27/03/2019,5.23,9,286
592047,2922864,Entire home/apt,55,32,30,11/03/2018,0.4,5,280
594235,2934588,Entire home/apt,79,5,113,27/03/2019,1.4,1,74
594580,2937042,Entire home/apt,120,1,198,08/04/2019,2.66,2,226
594965,2903982,Entire home/apt,32,32,44,01/11/2018,0.58,1,310
597715,2955244,Private room,90,3,60,06/04/2019,0.75,1,124
598329,2958781,Entire home/apt,160,3,49,17/03/2019,0.68,2,249
600162,2968616,Entire home/apt,50,4,201,02/04/2019,3.21,1,276
600590,1906952,Entire home/apt,50,30,231,19/03/2019,2.84,2,38
602284,2937042,Private room,120,1,27,28/03/2019,0.35,2,224
605186,2997406,Entire home/apt,120,32,3,19/04/2017,0.09,1,252
610847,801450,Entire home/apt,69,31,1,27/08/2017,0.05,1,71
610868,3028710,Entire home/apt,50,2,10,01/03/2019,0.84,3,151
611366,3031754,Private room,350,2,253,31/03/2019,3.11,1,239
617561,3039107,Entire home/apt,102,2,106,02/04/2019,1.33,28,278
619728,2439400,Entire home/apt,81,2,30,08/04/2019,0.61,41,150
619775,1683936,Entire home/apt,90,2,20,27/02/2019,0.26,12,269
621656,3081150,Entire home/apt,45,2,114,19/03/2019,2.42,1,339
624427,2690440,Entire home/apt,100,2,49,02/04/2019,1.15,1,185
625716,3104711,Entire home/apt,90,2,84,23/03/2019,1.04,1,347
626043,3080717,Entire home/apt,42,2,71,07/04/2019,0.97,3,331
627394,2123233,Entire home/apt,50,3,14,22/11/2018,0.19,3,269
630566,3134685,Entire home/apt,139,3,37,30/03/2019,0.47,1,271
630810,396363,Entire home/apt,191,2,30,27/09/2018,0.39,97,3
631119,3137253,Entire home/apt,80,1,208,02/10/2018,2.62,2,0
632818,2123233,Entire home/apt,85,2,21,12/10/2018,0.48,3,264
634786,114509,Entire home/apt,100,2,1,07/05/2018,0.09,3,365
635339,3165650,Entire home/apt,60,3,33,27/02/2019,1.29,2,261
636702,3099749,Entire home/apt,330,5,36,17/03/2019,0.65,1,329
637232,3178074,Entire home/apt,25,2,94,25/12/2018,1.62,2,71
638009,3182737,Entire home/apt,29,2,47,09/03/2019,0.61,1,125
638579,396363,Entire home/apt,179,3,13,21/01/2019,0.16,97,338
639137,1257705,Private room,90,1,9,06/04/2019,0.13,3,249
639820,3194412,Private room,84,1,152,09/04/2019,1.9,6,263
639941,1391607,Entire home/apt,90,3,38,13/03/2019,0.47,95,327
640130,3196093,Entire home/apt,38,2,4,30/06/2017,0.07,5,252
640268,3196093,Entire home/apt,38,2,4,18/05/2016,0.05,5,252
641402,3204398,Entire home/apt,66,4,13,29/10/2018,0.56,1,283
641627,3205684,Private room,30,1,3,07/05/2013,0.04,1,0
644289,3196093,Entire home/apt,26,3,16,29/09/2017,0.2,5,252
644378,3224671,Private room,45,60,9,30/06/2018,0.16,1,37
644534,3200533,Entire home/apt,38,30,15,31/12/2018,0.62,3,104
645513,3041333,Entire home/apt,110,3,126,25/03/2019,1.59,1,258
648112,3250864,Entire home/apt,59,2,6,17/06/2017,0.09,1,0
650885,3269311,Entire home/apt,250,3,158,06/04/2019,1.97,1,273
653634,2747085,Private room,40,2,56,28/09/2017,0.7,1,313
655071,3243301,Private room,80,1,54,23/03/2017,0.72,2,305
659207,366654,Private room,900,2,48,15/07/2017,0.62,9,358
659469,3327003,Entire home/apt,120,2,54,10/04/2019,0.73,1,1
662879,3347847,Entire home/apt,100,3,72,22/03/2019,0.91,1,267
663096,3348832,Entire home/apt,280,3,156,25/03/2019,2.51,3,292
663732,3348358,Entire home/apt,28,2,296,07/04/2019,3.76,1,206
666536,885134,Entire home/apt,60,1,2,23/12/2018,0.03,1,358
666642,3370750,Private room,75,3,146,16/03/2019,2.56,1,302
667143,3374569,Entire home/apt,78,3,235,07/04/2019,2.93,1,9
667177,3357515,Entire home/apt,250,3,177,01/04/2019,2.29,1,295
667181,3235383,Entire home/apt,40,2,194,01/04/2019,2.76,3,302
667762,3378062,Entire home/apt,40,2,60,30/10/2018,0.78,5,284
668990,3287071,Entire home/apt,30,32,1,21/02/2019,0.61,2,162
670546,3397801,Private room,299,4,54,24/03/2019,0.79,3,282
670782,3399123,Private room,105,2,152,21/03/2019,1.91,14,226
670956,3400078,Private room,40,2,88,31/08/2018,1.58,1,0
671458,3403659,Private room,85,3,92,24/03/2019,1.16,4,284
672728,1391607,Entire home/apt,125,3,24,19/03/2019,0.54,95,331
673708,1130143,Private room,80,3,10,15/08/2017,0.13,2,364
674068,3422175,Entire home/apt,125,3,4,01/03/2019,0.18,1,282
677012,3441858,Private room,24,2,30,07/02/2019,0.63,2,194
677850,3447779,Entire home/apt,48,4,52,22/08/2018,0.65,2,156
679547,2891968,Entire home/apt,21,4,131,26/09/2018,1.68,1,0
679664,3459348,Entire home/apt,55,1,13,16/02/2019,0.22,1,191
679965,3461421,Entire home/apt,33,2,197,09/04/2019,2.75,1,68
680808,3466606,Private room,39,2,13,21/07/2017,0.37,1,283
682808,3479346,Private room,399,2,154,23/03/2019,1.98,14,242
682871,3479346,Entire home/apt,119,2,268,25/03/2019,3.38,14,203
683062,3447779,Entire home/apt,37,4,33,21/11/2018,0.41,2,0
683195,3481371,Entire home/apt,100,4,194,06/04/2019,2.64,1,180
684613,3488091,Entire home/apt,24,3,59,30/12/2018,0.77,1,221
686830,942210,Entire home/apt,125,3,33,15/10/2018,0.42,4,328
688229,3513529,Private room,32,2,69,19/03/2019,1.07,2,17
688295,3109259,Private room,19,1,14,24/02/2019,0.69,1,4
688527,3515147,Entire home/apt,70,2,150,29/03/2019,3.1,1,221
688703,3516334,Entire home/apt,115,4,94,18/02/2019,1.28,3,99
688946,2907783,Entire home/apt,90,3,91,17/03/2019,1.14,1,280
691152,3533078,Entire home/apt,135,2,24,08/10/2018,0.68,2,301
694516,3019128,Entire home/apt,24,2,34,28/02/2019,0.43,1,304
697056,3570209,Entire home/apt,35,1,6,12/06/2018,0.13,1,217
698593,3454952,Entire home/apt,105,3,218,03/04/2019,2.84,3,152
699302,3196093,Entire home/apt,25,3,11,16/09/2017,0.2,5,288
699920,3590196,Entire home/apt,175,2,3,27/01/2019,0.06,21,243
699927,3590691,Entire home/apt,40,3,202,01/04/2019,2.57,1,189
700150,3590196,Entire home/apt,302,2,14,24/03/2019,0.29,21,216
702095,3603800,Entire home/apt,105,3,239,25/03/2019,3.14,1,220
705049,2579651,Entire home/apt,380,1,38,31/12/2018,1.04,11,365
705086,2579651,Entire home/apt,700,1,14,09/04/2018,0.4,11,365
714400,2579651,Private room,90,31,22,08/10/2017,0.3,11,283
715036,3682696,Entire home/apt,141,4,191,08/04/2019,2.55,1,236
717710,1432835,Entire home/apt,55,3,71,16/03/2019,0.99,38,134
718469,3705838,Entire home/apt,81,1,260,10/04/2019,3.59,1,175
721375,3724467,Entire home/apt,700,3,19,30/03/2019,0.81,13,176
721378,3724467,Entire home/apt,999,3,3,27/02/2019,0.22,13,63
721470,3724467,Entire home/apt,999,3,6,02/09/2018,0.52,13,251
721471,3724467,Entire home/apt,60,1,1,16/09/2018,0.14,13,256
721473,3724467,Entire home/apt,999,3,3,17/06/2018,0.23,13,80
721478,3724467,Entire home/apt,700,3,8,21/01/2019,0.42,13,204
721479,3724467,Entire home/apt,700,3,18,19/03/2019,0.84,13,200
721504,3724467,Entire home/apt,700,1,4,27/01/2019,0.71,13,165
721509,3724467,Private room,999,3,1,18/04/2018,0.08,13,253
721511,3724467,Entire home/apt,700,3,2,11/03/2019,0.68,13,211
721512,3724467,Entire home/apt,700,3,1,27/05/2017,0.04,13,211
722742,3548964,Private room,110,3,163,02/04/2019,2.08,1,248
724331,3744544,Entire home/apt,110,3,72,01/04/2019,0.99,33,299
724523,3487870,Entire home/apt,113,2,90,02/04/2019,1.61,2,269
725009,1935498,Entire home/apt,120,3,103,07/04/2019,1.38,3,223
725659,3514423,Private room,85,3,117,17/03/2019,1.58,1,267
728480,2201772,Entire home/apt,450,3,14,04/11/2018,0.19,9,0
729078,3786292,Entire home/apt,69,1,258,27/03/2019,3.46,1,152
730467,10704,Entire home/apt,81,3,15,19/03/2019,0.26,70,221
732214,3811607,Entire home/apt,42,32,127,31/01/2019,1.86,1,283
732353,2579651,Entire home/apt,90,31,41,28/03/2019,0.57,11,283
732671,3815217,Entire home/apt,130,3,89,10/03/2019,1.16,1,255
733941,10704,Entire home/apt,75,3,36,27/11/2018,0.5,70,262
735311,3378062,Entire home/apt,40,2,55,21/03/2019,0.73,5,277
735587,3378062,Entire home/apt,40,2,81,25/03/2019,1.14,5,282
735620,3378062,Entire home/apt,40,2,91,15/03/2019,1.17,5,256
735631,3378062,Private room,40,2,95,24/03/2019,1.24,5,262
737759,3853819,Entire home/apt,70,1,1,03/01/2019,0.31,1,31
739407,3867104,Private room,95,4,48,28/09/2017,0.61,2,6
739557,3868307,Entire home/apt,160,2,23,26/03/2019,0.3,1,124
740362,3726119,Entire home/apt,25,3,20,17/03/2019,0.42,1,230
742156,3678711,Entire home/apt,38,1,73,03/01/2018,0.94,8,25
742241,3678711,Private room,38,1,25,08/10/2018,0.39,8,25
742820,3889607,Entire home/apt,100,1,314,24/03/2019,3.99,1,201
744153,3899934,Entire home/apt,47,3,371,31/03/2019,4.73,1,132
745220,3678711,Private room,38,1,38,11/11/2018,0.55,8,25
745275,3678711,Entire home/apt,38,1,34,12/11/2018,0.48,8,19
745829,299462,Entire home/apt,200,4,118,19/03/2019,2.01,79,313
746086,3913234,Entire home/apt,132,4,7,24/03/2019,2.1,1,301
747274,3922188,Entire home/apt,150,2,146,16/03/2019,1.87,1,257
748693,3102808,Entire home/apt,35,3,159,08/04/2019,2.15,2,316
750066,3193594,Private room,41,32,1,26/12/2018,0.28,6,160
753322,3962572,Entire home/apt,140,5,148,19/03/2019,1.99,3,239
755382,1205494,Entire home/apt,130,1,30,08/04/2019,0.39,7,266
756588,3102808,Entire home/apt,56,3,56,01/03/2019,0.76,2,356
757149,3987152,Entire home/apt,100,1,96,01/04/2019,1.28,1,175
758216,3426138,Entire home/apt,85,3,26,10/04/2019,0.36,1,258
758925,3707801,Private room,27,2,124,21/03/2019,1.67,2,264
759351,4002679,Entire home/apt,65,2,164,30/03/2019,2.21,1,86
759760,2218343,Entire home/apt,25,1,163,11/03/2019,2.09,2,69
759769,1432835,Entire home/apt,90,3,166,22/03/2019,2.25,38,164
759811,1432835,Entire home/apt,190,3,117,17/03/2019,1.87,38,161
760131,4006184,Entire home/apt,50,1,222,04/04/2019,2.91,17,196
764452,4030082,Entire home/apt,140,3,144,16/03/2019,1.93,2,295
767596,4048635,Entire home/apt,196,2,172,08/04/2019,2.31,1,251
770175,4063266,Entire home/apt,59,4,268,24/03/2019,3.49,1,231
770453,4064440,Private room,260,3,181,20/03/2019,2.44,11,232
771440,1288050,Entire home/apt,33,4,27,26/09/2018,0.5,2,40
773523,4076744,Entire home/apt,140,3,128,09/04/2019,1.78,2,258
773802,4076744,Entire home/apt,240,3,156,25/03/2019,2.14,2,249
773886,893805,Entire home/apt,123,2,287,24/03/2019,3.76,7,167
775644,177617,Entire home/apt,116,3,149,31/03/2019,2,5,250
775794,4092116,Entire home/apt,45,5,161,23/03/2019,2.11,1,37
776038,4093480,Private room,146,2,139,01/01/2019,1.79,1,230
776174,3038266,Private room,51,32,241,04/04/2019,3.16,5,3
777476,2439400,Private room,290,2,31,31/03/2019,0.44,41,210
777527,2439400,Entire home/apt,78,2,22,15/11/2018,0.29,41,49
777587,4101093,Private room,115,3,303,24/03/2019,3.94,12,85
782502,860071,Private room,21,2,5,27/12/2014,0.07,3,68
783729,3541314,Entire home/apt,32,2,8,04/01/2019,1.25,1,38
786250,4145430,Entire home/apt,150,4,62,30/07/2018,0.83,1,8
789101,1384020,Entire home/apt,25,10,8,28/12/2018,0.28,4,316
790404,3885805,Entire home/apt,60,3,147,05/04/2019,2.05,3,329
790475,3885805,Private room,60,3,155,10/04/2019,2.01,3,310
790482,1744516,Private room,125,3,11,08/07/2017,0.15,19,293
791717,4171310,Entire home/apt,120,7,26,28/11/2018,0.36,1,283
792509,4175419,Entire home/apt,30,2,48,31/10/2018,0.83,2,268
795991,1193543,Private room,90,3,97,17/03/2019,1.38,1,213
796809,4197413,Private room,85,3,131,11/03/2019,1.7,1,286
799240,4206410,Private room,39,32,31,24/03/2019,0.42,1,201
800045,4212095,Entire home/apt,80,2,34,12/11/2018,0.54,19,16
801237,4217311,Entire home/apt,118,5,105,06/04/2019,2.36,11,124
802553,3972387,Private room,120,1,1,20/06/2015,0.02,1,365
803502,3317755,Entire home/apt,50,2,105,07/04/2019,1.53,1,106
803810,4230551,Entire home/apt,50,32,31,05/06/2015,0.49,1,0
804268,4232898,Private room,125,2,41,28/02/2019,0.55,1,244
811657,4268119,Entire home/apt,28,3,69,23/03/2019,1.54,2,292
811669,1384020,Entire home/apt,27,15,22,05/01/2019,0.62,4,267
811716,4260395,Entire home/apt,65,15,17,03/03/2019,0.28,4,350
811918,4269183,Entire home/apt,38,2,303,18/03/2019,3.97,6,196
813031,206635,Private room,129,3,66,06/04/2019,0.92,3,206
814154,4260952,Entire home/apt,246,2,3,15/06/2018,0.14,13,220
814172,4260952,Private room,214,2,2,07/10/2017,0.1,13,176
814177,4260952,Private room,188,2,3,09/07/2018,0.04,13,241
814182,4260952,Entire home/apt,120,2,3,23/06/2018,0.12,13,0
814226,4260952,Entire home/apt,197,2,3,17/10/2018,0.04,13,0
814678,2426845,Entire home/apt,75,2,1,28/02/2019,0.71,1,42
820629,4309990,Entire home/apt,25,2,3,26/09/2018,0.1,2,352
821100,4311845,Entire home/apt,100,2,272,08/04/2019,3.66,1,131
821523,4313721,Private room,125,2,172,25/03/2019,2.53,1,197
823272,2036118,Entire home/apt,119,2,99,09/02/2019,1.32,1,98
824902,4236308,Entire home/apt,80,4,130,29/03/2019,1.75,2,87
827250,3912625,Entire home/apt,143,32,31,27/10/2018,0.44,2,167
829660,1200218,Entire home/apt,109,2,219,26/03/2019,2.88,1,251
832516,4357751,Entire home/apt,27,2,94,19/03/2019,1.26,3,342
832755,4358678,Private room,270,4,5,17/06/2018,0.16,1,127
833491,4305996,Entire home/apt,41,1,143,02/04/2019,2.03,1,334
836392,4175419,Entire home/apt,30,2,82,20/09/2018,1.32,2,265
837986,3901019,Entire home/apt,57,3,272,24/03/2019,3.99,22,181
838475,4348181,Entire home/apt,70,3,12,02/03/2018,0.26,1,0
839655,1869452,Entire home/apt,95,3,63,07/04/2019,0.85,2,133
839805,4386966,Entire home/apt,500,3,3,22/08/2018,0.05,2,0
840123,4269183,Entire home/apt,40,2,277,26/03/2019,3.67,6,225
841015,4249766,Private room,32,2,227,02/04/2019,3.03,1,42
841483,383697,Entire home/apt,198,4,3,09/08/2015,0.05,16,289
842126,4258344,Private room,145,3,74,29/03/2019,1.38,4,129
842389,631951,Entire home/apt,85,1,150,09/04/2019,2.25,1,148
843612,4404179,Private room,41,2,99,17/03/2019,1.63,1,160
846363,771458,Entire home/apt,59,2,80,08/10/2017,1.75,12,0
846423,4419532,Entire home/apt,195,3,162,18/03/2019,2.18,2,49
847195,1432835,Entire home/apt,90,3,85,18/03/2019,1.13,38,200
847735,3744544,Entire home/apt,203,3,70,28/02/2019,0.94,33,209
847785,7843388,Entire home/apt,120,2,59,07/04/2019,0.82,45,145
848081,388382,Private room,75,2,200,08/03/2019,2.76,1,290
849839,4437210,Private room,225,3,216,27/01/2019,2.89,2,219
850227,4439624,Entire home/apt,30,2,183,30/03/2019,4.57,2,120
850228,4439624,Entire home/apt,34,2,308,06/04/2019,4.28,2,282
851240,3226879,Entire home/apt,50,2,43,23/12/2018,0.6,1,131
852134,3039107,Entire home/apt,54,2,89,10/03/2019,1.28,28,310
852195,3039107,Entire home/apt,99,2,152,21/02/2019,2.05,28,251
856159,4460420,Entire home/apt,25,1,176,01/04/2019,2.44,1,279
856853,4480605,Entire home/apt,45,2,48,05/04/2019,3.52,1,98
857030,4481767,Entire home/apt,26,2,85,24/10/2018,1.2,1,296
857117,2426746,Entire home/apt,19,1,382,24/03/2019,5.04,4,309
859046,2035951,Entire home/apt,42,2,26,02/03/2019,1.29,1,39
859105,1791366,Entire home/apt,59,32,82,31/01/2019,1.17,1,274
859813,2114524,Entire home/apt,195,3,109,23/03/2019,1.48,1,237
859884,4503125,Private room,45,1,74,27/02/2019,1,1,277
861172,1422875,Private room,110,1,66,03/01/2019,0.9,1,1
861721,4452491,Entire home/apt,368,4,83,30/03/2019,1.65,3,288
862524,2489470,Entire home/apt,159,3,101,28/02/2019,1.46,3,292
862640,4187032,Entire home/apt,25,1,16,23/01/2014,0.22,1,0
862690,3709040,Private room,200,7,24,04/08/2018,0.33,1,107
864681,1269810,Entire home/apt,60,4,7,29/09/2017,0.14,3,0
865148,582060,Entire home/apt,222,3,69,05/04/2019,0.95,24,252
865273,582060,Entire home/apt,135,3,47,08/03/2019,1.08,24,231
865309,582060,Entire home/apt,120,3,67,25/03/2019,0.99,24,250
865367,582060,Entire home/apt,125,3,44,27/03/2019,0.64,24,242
866298,826476,Entire home/apt,65,3,278,01/04/2019,3.74,2,290
866315,4427588,Private room,79,1,434,24/03/2019,5.71,2,310
867893,2688205,Entire home/apt,100,3,197,21/03/2019,2.66,15,129
868198,582060,Entire home/apt,260,3,44,20/03/2019,0.59,24,241
869984,396363,Entire home/apt,129,2,4,03/08/2018,0.06,97,315
870256,396363,Private room,99,2,8,02/04/2018,0.11,97,323
871899,4258344,Entire home/apt,157,3,67,19/02/2019,0.96,4,147
872568,3342699,Entire home/apt,700,4,9,06/07/2016,0.12,4,358
875171,2366949,Entire home/apt,70,2,107,23/03/2019,1.45,12,277
876101,4626127,Entire home/apt,3000,3,51,02/11/2016,0.69,1,348
877884,4638971,Entire home/apt,149,3,51,05/04/2019,0.69,1,301
879162,4647830,Entire home/apt,24,3,167,09/04/2019,2.94,2,10
879356,4649744,Entire home/apt,63,3,298,31/03/2019,4,1,179
879524,383697,Private room,137,1,12,30/10/2018,0.21,16,268
883382,4261436,Entire home/apt,68,2,69,03/04/2019,1.01,1,267
884420,4597849,Entire home/apt,90,5,26,08/04/2019,0.43,1,167
886886,2009370,Private room,236,3,180,01/04/2019,2.47,3,132
887953,567180,Private room,229,3,28,27/01/2019,0.57,5,128
888316,4710878,Private room,64,2,154,09/04/2019,2.1,1,45
888988,4715645,Entire home/apt,195,13,35,25/03/2019,0.49,1,272
889575,4720380,Entire home/apt,136,4,254,24/03/2019,3.44,1,214
892906,3744544,Entire home/apt,93,3,29,07/04/2019,0.61,33,337
893052,3744544,Entire home/apt,100,3,106,07/04/2019,1.48,33,300
893129,4749906,Entire home/apt,150,1,3,09/08/2016,0.06,1,8
893399,3454952,Entire home/apt,95,3,64,07/04/2019,0.88,3,108
895091,4585497,Entire home/apt,94,3,155,31/03/2019,2.19,1,205
896337,4778919,Entire home/apt,35,4,143,31/03/2019,1.98,1,242
896367,4101093,Entire home/apt,122,3,239,18/03/2019,3.27,12,68
897901,2320210,Entire home/apt,118,3,16,24/12/2018,0.22,48,61
897943,3981757,Entire home/apt,43,2,193,23/03/2019,2.68,1,216
900045,4805453,Entire home/apt,49,2,325,06/04/2019,4.5,2,115
901211,4814875,Private room,130,4,138,01/04/2019,2.14,1,223
902403,2041901,Entire home/apt,185,3,102,25/03/2019,1.37,16,144
903135,3972936,Private room,85,2,47,15/03/2019,0.73,26,321
903712,4831362,Entire home/apt,66,2,100,07/04/2019,1.35,1,266
904862,3607773,Private room,80,3,138,24/03/2019,1.9,3,277
906559,1820272,Entire home/apt,60,2,359,25/03/2019,4.8,6,173
907219,2041901,Entire home/apt,85,3,61,12/03/2019,0.82,16,193
910349,4883414,Private room,27,1,94,16/03/2019,2.33,2,36
912414,4895881,Private room,150,5,178,11/12/2018,2.38,1,0
915823,297545,Entire home/apt,220,2,76,17/03/2019,1.07,3,224
916232,4918438,Entire home/apt,129,3,191,26/03/2019,2.57,1,266
917308,1228590,Entire home/apt,220,2,169,20/03/2019,2.33,6,243
917540,4889904,Entire home/apt,25,7,25,06/04/2019,0.34,1,275
918481,2701451,Entire home/apt,125,2,15,11/05/2018,0.27,1,215
919483,4906099,Private room,91,2,168,01/04/2019,2.33,7,160
922906,4906099,Entire home/apt,116,2,139,25/03/2019,2.35,7,208
922907,4906099,Private room,83,2,136,04/04/2019,2.26,7,175
924382,3744544,Private room,161,3,66,02/04/2019,1.08,33,266
924449,3744544,Private room,180,3,34,18/03/2019,0.48,33,334
925557,4979056,Entire home/apt,80,4,159,25/03/2019,2.22,1,235
927472,135703,Entire home/apt,180,2,65,06/01/2019,0.88,13,249
927535,3441858,Entire home/apt,28,2,50,26/02/2019,1.07,2,195
927680,135703,Entire home/apt,320,2,145,07/04/2019,1.98,13,241
928725,2769731,Entire home/apt,100,32,74,23/04/2018,1.01,1,364
929663,4906099,Private room,134,2,100,31/03/2019,2.14,7,208
931437,4897883,Private room,225,4,178,01/04/2019,2.39,8,255
931756,5020114,Entire home/apt,110,5,96,02/04/2019,1.32,3,263
933094,665423,Entire home/apt,52,1,211,08/04/2019,2.96,1,312
933877,5035608,Entire home/apt,45,3,98,26/09/2017,1.35,1,98
934979,5044674,Entire home/apt,110,2,278,01/04/2019,3.74,1,173
935921,4047624,Entire home/apt,33,1,16,01/03/2019,0.24,2,31
936734,5045046,Entire home/apt,71,3,206,06/04/2019,2.88,1,143
936781,5057234,Private room,90,3,155,02/04/2019,2.17,3,219
936818,4260952,Entire home/apt,176,2,5,06/06/2018,0.33,13,0
936850,4260952,Entire home/apt,182,2,3,16/03/2019,0.12,13,222
936900,5057797,Entire home/apt,80,5,74,26/03/2019,1.12,2,12
937331,5036026,Private room,150,2,171,08/04/2019,3.12,1,180
937425,5060686,Entire home/apt,28,3,10,08/04/2019,0.47,5,231
937501,5060686,Entire home/apt,42,3,68,08/04/2019,1.01,5,244
937547,2201772,Entire home/apt,450,4,63,02/01/2019,0.86,9,320
937657,4212095,Entire home/apt,80,2,108,31/12/2018,1.46,19,29
938006,4212095,Entire home/apt,80,2,73,17/03/2019,0.98,19,32
938497,5060686,Entire home/apt,40,30,17,16/03/2019,0.32,5,281
938611,5060686,Private room,34,30,6,02/09/2018,0.25,5,226
938626,5060686,Entire home/apt,42,3,89,07/04/2019,1.25,5,250
939692,1298586,Entire home/apt,90,2,58,17/03/2019,0.81,6,203
939792,1298586,Entire home/apt,90,2,78,07/04/2019,1.07,6,223
940338,674212,Entire home/apt,300,2,124,25/03/2019,1.85,8,267
940374,5082480,Private room,85,1,289,10/02/2019,3.93,1,185
942410,5096271,Private room,86,6,109,27/03/2019,1.47,1,237
942574,5097332,Entire home/apt,65,2,36,01/01/2019,0.6,1,278
943291,5103491,Entire home/apt,30,3,60,30/03/2019,2.43,2,132
945007,134673,Private room,89,3,216,11/03/2019,2.9,1,232
945564,1432835,Entire home/apt,120,3,180,26/03/2019,2.97,38,172
946122,5126902,Entire home/apt,126,3,69,13/03/2019,0.97,1,272
946881,4101093,Entire home/apt,130,3,212,24/03/2019,2.93,12,103
947269,721378,Private room,150,2,140,04/02/2019,1.89,2,214
950784,5157936,Entire home/apt,29,1,439,06/04/2019,6.27,4,214
951364,396363,Entire home/apt,145,2,9,19/09/2018,0.13,97,302
953750,5178840,Private room,48,3,269,25/03/2019,3.71,1,115
954380,5182848,Entire home/apt,35,1,82,04/03/2017,1.14,1,0
956256,5197001,Entire home/apt,80,3,181,25/03/2019,2.57,2,94
956768,5201227,Entire home/apt,220,3,131,07/04/2019,1.78,4,229
957402,3099440,Private room,87,3,91,01/04/2019,1.36,1,272
957657,2935086,Entire home/apt,80,4,211,26/03/2019,2.96,1,194
958946,5020114,Entire home/apt,175,6,102,01/03/2019,1.41,3,271
959089,5219447,Entire home/apt,238,2,237,07/04/2019,3.29,1,259
959840,5223863,Private room,40,1,493,09/04/2019,6.73,3,174
959880,5223863,Entire home/apt,37,1,571,06/04/2019,7.79,3,174
960275,5227798,Entire home/apt,25,4,11,29/08/2016,0.31,1,99
961548,5236677,Entire home/apt,92,3,175,05/04/2019,2.37,1,22
963109,4437210,Entire home/apt,170,3,216,31/03/2019,3.1,2,280
963289,5249210,Private room,117,3,322,03/04/2019,4.51,1,196
963533,5170597,Private room,230,3,113,25/03/2019,1.6,5,288
965229,1432835,Entire home/apt,120,3,173,26/03/2019,2.42,38,147
965441,4152277,Entire home/apt,119,2,32,30/08/2016,0.44,1,68
965681,5170597,Entire home/apt,100,3,110,30/03/2019,1.88,5,282
965712,5170597,Entire home/apt,99,3,124,01/04/2019,1.71,5,265
965733,5170597,Entire home/apt,230,3,144,24/03/2019,2.19,5,308
966895,5274991,Entire home/apt,35,3,200,31/03/2019,2.8,2,227
966910,383697,Entire home/apt,99,1,157,27/03/2019,2.26,16,137
967346,5170597,Entire home/apt,300,3,106,02/04/2019,1.55,5,292
972000,4905017,Entire home/apt,37,1,221,20/03/2019,3.06,1,132
972024,5314041,Entire home/apt,320,4,21,19/03/2019,0.34,4,198
973013,5320036,Entire home/apt,81,3,96,31/03/2019,1.36,1,281
976595,3744544,Entire home/apt,186,3,93,04/04/2019,1.31,33,305
977496,3376710,Entire home/apt,145,2,11,29/07/2018,0.18,43,328
977631,5349333,Private room,60,1,228,22/03/2019,3.14,3,110
977745,5349333,Private room,60,1,278,25/03/2019,5.04,3,144
978990,34580,Entire home/apt,59,3,252,28/03/2019,3.39,1,206
979073,5359193,Entire home/apt,80,1,125,28/03/2019,1.72,1,219
979914,5361567,Entire home/apt,170,3,118,03/03/2019,1.62,1,197
982492,5201227,Private room,257,3,254,07/04/2019,4.23,4,218
982915,5385759,Entire home/apt,59,3,238,10/04/2019,3.3,1,87
984985,4507138,Entire home/apt,43,3,189,21/03/2019,2.75,1,287
985310,5405357,Entire home/apt,65,1,26,31/03/2019,0.46,2,327
986015,3962572,Private room,110,5,139,29/01/2019,1.91,3,248
986101,3744544,Private room,55,3,38,21/02/2019,0.56,33,328
986639,5414485,Private room,200,3,115,18/03/2019,1.59,1,229
986692,5414684,Entire home/apt,70,1,101,31/03/2019,1.38,5,178
987376,5418072,Entire home/apt,15,2,91,27/03/2019,1.5,2,273
987508,5418788,Entire home/apt,49,2,238,17/03/2019,3.25,1,231
987773,5420668,Private room,35,2,250,04/03/2019,3.43,2,112
988917,5428204,Entire home/apt,89,1,599,04/04/2019,8.19,1,198
993497,4021283,Entire home/apt,52,30,6,02/12/2018,0.08,23,284
995920,5471409,Entire home/apt,22,1,11,25/05/2018,0.21,1,0
996059,3516334,Private room,108,5,127,25/03/2019,1.75,3,137
996713,5000992,Entire home/apt,29,1,356,07/04/2019,4.97,1,171
998726,5489103,Entire home/apt,132,3,256,20/03/2019,3.58,1,307
1001823,5509819,Entire home/apt,75,3,55,28/02/2019,0.78,3,353
1002233,5511646,Entire home/apt,99,3,161,01/04/2019,2.64,2,213
1002372,2379410,Private room,100,1,155,20/03/2019,2.12,1,238
1002888,5514684,Private room,34,2,41,14/08/2017,0.57,1,0
1005399,5314041,Entire home/apt,600,4,3,14/10/2018,0.06,4,202
1005420,5314041,Entire home/apt,780,4,6,10/06/2018,0.12,4,181
1005499,10223142,Entire home/apt,200,3,16,24/03/2019,0.23,5,0
1005502,10223142,Entire home/apt,200,3,16,10/03/2019,0.23,5,4
1005751,3342699,Private room,95,1,4,19/08/2018,0.09,4,107
1005754,2009370,Entire home/apt,115,3,34,04/04/2019,0.48,3,74
1005775,3342699,Entire home/apt,75,1,4,06/08/2014,0.06,4,94
1005826,3342699,Entire home/apt,85,1,4,31/03/2019,0.17,4,100
1007939,5449946,Entire home/apt,79,2,229,19/03/2019,3.22,1,226
1008717,750385,Entire home/apt,420,3,27,28/01/2019,1.15,4,144
1010589,5511646,Entire home/apt,99,3,203,03/04/2019,2.87,2,182
1011083,5560246,Entire home/apt,110,3,252,24/03/2019,3.48,1,212
1013104,5573281,Private room,100,3,4,01/04/2019,4,1,277
1014822,5583695,Entire home/apt,100,3,137,01/04/2019,2.26,1,204
1015402,1725307,Entire home/apt,60,31,7,18/10/2017,0.17,2,364
1015663,5583741,Entire home/apt,30,1,226,30/03/2019,3.13,2,285
1016104,2201772,Private room,450,3,36,04/06/2017,0.5,9,361
1018050,5603097,Private room,38,2,81,31/03/2019,1.82,1,7
1018053,5603130,Entire home/apt,29,1,47,18/03/2019,0.74,2,10
1018647,5606008,Entire home/apt,50,1,292,02/04/2019,4.03,1,335
1020452,5617051,Private room,76,6,170,03/04/2019,2.35,1,59
1021297,5621279,Entire home/apt,36,2,234,06/04/2019,3.24,2,325
1021299,5621279,Entire home/apt,42,3,95,03/01/2019,1.38,2,316
1021389,5621962,Shared room,130,3,88,22/03/2019,1.5,1,274
1021822,2603961,Entire home/apt,26,1,248,23/03/2019,3.39,6,310
1023985,5636973,Private room,122,2,93,01/03/2019,1.49,3,212
1024587,2603961,Entire home/apt,19,1,173,18/03/2019,2.36,6,326
1025705,5647375,Entire home/apt,85,1,238,05/04/2019,3.31,1,242
1025707,3744544,Entire home/apt,101,3,53,13/12/2018,0.73,33,295
1026452,5650710,Entire home/apt,135,2,26,27/10/2018,0.46,2,300
1027560,5655236,Private room,25,2,8,15/09/2017,0.39,1,0
1027718,5655546,Entire home/apt,89,3,223,25/03/2019,3.07,8,88
1027732,5655546,Private room,99,2,173,25/03/2019,2.6,8,78
1029587,5664950,Entire home/apt,110,3,196,19/03/2019,2.72,1,185
1032836,5683688,Entire home/apt,130,3,81,02/04/2019,1.16,1,267
1034301,5692445,Entire home/apt,39,2,8,20/04/2018,0.12,8,363
1034303,5692445,Entire home/apt,39,2,24,26/02/2018,0.35,8,354
1034304,5692445,Entire home/apt,39,2,20,27/09/2016,0.33,8,354
1034305,5692445,Private room,39,2,45,08/10/2018,0.62,8,351
1034771,5636973,Entire home/apt,200,3,153,05/04/2019,2.33,3,244
1036032,2426746,Entire home/apt,12,1,502,15/03/2019,6.85,4,274
1037668,5712331,Entire home/apt,220,1,40,01/03/2019,0.57,1,154
1038904,5719437,Entire home/apt,28,3,319,27/03/2019,4.36,1,339
1039162,4419532,Entire home/apt,195,3,165,01/03/2019,2.3,2,94
1039211,5721224,Private room,102,3,63,02/01/2019,1.14,2,100
1041060,3744544,Private room,126,3,95,31/03/2019,1.35,33,301
1044121,3744544,Private room,80,3,27,08/04/2019,0.81,33,293
1044130,5748709,Entire home/apt,190,3,124,10/04/2019,1.75,1,244
1044862,5751589,Entire home/apt,105,1,117,18/03/2019,4.45,2,263
1044864,5751589,Private room,51,1,15,18/03/2019,1.72,2,334
1047089,5764841,Entire home/apt,80,1,250,20/03/2019,4,1,183
1048468,3867104,Private room,25,1,1,14/05/2014,0.02,2,201
1049897,2041901,Entire home/apt,127,3,140,27/03/2019,1.95,16,153
1052151,5793357,Entire home/apt,80,2,87,03/01/2019,1.23,1,0
1052846,1298586,Entire home/apt,98,2,19,29/03/2019,0.52,6,148
1053030,5132531,Entire home/apt,49,1,4,23/11/2014,0.07,2,280
1056112,2603961,Entire home/apt,26,1,239,17/03/2019,3.28,6,327
1060042,5837160,Entire home/apt,35,2,126,08/04/2019,1.75,1,300
1060614,5472538,Entire home/apt,132,2,467,31/03/2019,6.43,1,247
1061343,5843487,Entire home/apt,99,1,54,20/03/2019,0.8,12,236
1063092,5840078,Entire home/apt,25,4,16,26/09/2017,0.25,3,244
1064956,5843487,Private room,79,1,60,02/01/2019,0.93,12,245
1064989,5157936,Entire home/apt,35,1,454,06/04/2019,6.24,4,204
1067338,5873242,Entire home/apt,180,3,23,08/04/2019,1.2,1,302
1068523,5878688,Entire home/apt,119,2,77,06/04/2019,1.67,58,245
1068919,1369675,Entire home/apt,400,3,17,25/11/2018,0.43,4,323
1069572,5841645,Entire home/apt,123,3,52,09/04/2019,1,1,293
1070322,5888954,Entire home/apt,40,2,196,01/04/2019,2.7,2,275
1070511,5888954,Entire home/apt,30,1,189,03/04/2019,2.73,2,309
1071608,2603961,Private room,18,1,278,27/03/2019,3.86,6,293
1071740,805226,Entire home/apt,549,2,117,23/03/2019,1.63,1,243
1071787,3493945,Entire home/apt,26,1,15,27/08/2018,0.33,2,284
1073748,5159312,Entire home/apt,175,3,76,11/03/2019,1.05,1,248
1074100,3937003,Entire home/apt,75,3,205,07/04/2019,2.84,8,278
1074936,3533078,Entire home/apt,155,2,18,21/03/2019,0.38,2,300
1075855,5919250,Entire home/apt,115,2,139,31/03/2019,2.04,1,259
1077851,2110700,Entire home/apt,78,2,196,04/04/2019,2.85,1,194
1078049,14580203,Entire home/apt,150,2,48,23/02/2019,0.67,5,248
1078585,5933563,Private room,95,2,16,11/03/2015,0.22,2,364
1079887,542867,Private room,89,2,104,02/01/2019,1.43,2,248
1082656,5947431,Private room,149,3,41,24/03/2019,0.57,3,73
1083115,5954956,Entire home/apt,30,2,157,01/04/2019,2.18,5,311
1085376,5966973,Private room,56,1,272,08/04/2019,3.84,1,243
1085881,1013855,Entire home/apt,96,3,123,18/03/2019,1.78,7,234
1091090,3971935,Entire home/apt,80,5,17,28/02/2019,0.29,2,245
1091258,5995906,Entire home/apt,75,10,34,17/08/2018,0.48,1,123
1092321,2903308,Entire home/apt,116,5,140,01/03/2019,2,1,276
1092780,6057270,Entire home/apt,69,2,268,25/03/2019,3.88,9,171
1093633,6008627,Private room,40,1,26,29/07/2018,0.36,1,262
1094534,5509819,Entire home/apt,50,3,59,14/10/2018,0.83,3,361
1094547,5509819,Entire home/apt,40,3,71,21/03/2019,1,3,335
1094548,5107063,Private room,95,1,190,24/03/2019,2.69,10,234
1094604,4193061,Private room,95,4,11,05/06/2017,0.15,1,269
1094847,2537484,Entire home/apt,62,1,169,19/01/2019,2.35,4,233
1098571,5223863,Entire home/apt,37,1,616,08/04/2019,8.56,3,177
1098894,4226509,Private room,360,4,106,06/04/2019,1.48,2,239
1099498,6040402,Entire home/apt,42,3,238,09/04/2019,3.33,1,243
1100121,6042913,Entire home/apt,80,2,297,04/04/2019,4.16,1,163
1100506,4805453,Entire home/apt,59,2,328,05/04/2019,4.56,2,130
1101942,6035310,Entire home/apt,35,32,1,02/01/2019,0.3,2,313
1102069,3942088,Entire home/apt,60,1,101,17/03/2019,1.49,1,13
1102197,3243301,Entire home/apt,80,1,39,30/09/2017,0.61,2,332
1102498,6055609,Entire home/apt,91,5,86,05/04/2019,1.2,1,255
1102747,1986299,Entire home/apt,120,1,87,31/03/2019,1.23,19,163
1102856,6057270,Private room,59,2,315,27/03/2019,4.44,9,261
1104197,5583741,Entire home/apt,30,1,218,01/04/2019,3.31,2,308
1106222,2041901,Private room,85,3,49,26/03/2019,0.69,16,206
1106731,5840078,Private room,43,4,16,01/03/2019,0.37,3,244
1106987,6077682,Entire home/apt,34,1,169,04/04/2019,2.35,1,28
1109264,2603961,Entire home/apt,21,1,194,25/03/2019,2.68,6,321
1109610,6090865,Private room,70,30,7,03/10/2018,0.19,1,258
1109989,6092480,Entire home/apt,75,2,291,07/03/2019,4.07,3,78
1110057,396363,Entire home/apt,166,2,6,09/07/2018,0.09,97,298
1111406,6099660,Entire home/apt,75,1,64,27/02/2019,1.51,46,196
1111408,6099660,Entire home/apt,75,1,45,11/02/2019,0.73,46,191
1111410,6099660,Private room,95,1,45,15/03/2019,0.82,46,149
1111412,6099660,Private room,100,1,73,09/03/2019,1.18,46,141
1111418,6099660,Private room,80,1,31,11/03/2019,0.63,46,198
1112838,6107595,Entire home/apt,130,3,130,06/03/2019,1.81,1,130
1113540,4864707,Entire home/apt,100,3,86,25/10/2018,1.38,5,135
1114170,6001714,Private room,17,30,65,26/05/2017,0.92,2,192
1114343,2647278,Entire home/apt,40,1,11,25/02/2019,0.2,3,313
1117699,4042185,Entire home/apt,60,3,112,18/03/2019,1.57,1,281
1119598,71615,Entire home/apt,98,1,36,24/03/2019,0.65,28,158
1123805,6164662,Entire home/apt,12,30,4,30/11/2018,0.22,3,256
1124129,6166581,Private room,88,3,314,24/03/2019,4.41,5,258
1125212,2201772,Entire home/apt,350,3,12,01/10/2017,0.17,9,354
1129827,4985749,Entire home/apt,375,5,97,03/03/2019,1.43,11,236
1132445,3601196,Private room,90,3,54,10/12/2018,0.76,6,156
1136066,5754040,Private room,20,31,1,20/06/2013,0.01,2,283
1136172,10223142,Entire home/apt,200,3,64,20/03/2019,0.92,5,16
1136384,2646488,Entire home/apt,185,2,142,05/04/2019,2.27,1,195
1136527,5840078,Entire home/apt,25,4,44,03/03/2019,1.02,3,332
1137154,10223142,Private room,200,3,36,10/03/2019,0.52,5,17
1139069,4212095,Entire home/apt,80,2,47,15/03/2019,0.65,19,26
1139434,2304846,Entire home/apt,54,2,132,22/03/2019,1.86,3,206
1139564,5729069,Entire home/apt,243,3,15,29/10/2018,0.23,26,188
1139791,6251419,Private room,20,2,182,06/04/2019,2.55,1,288
1139810,6251533,Entire home/apt,35,1,57,03/04/2019,0.82,1,127
1139849,5729069,Entire home/apt,242,3,5,09/11/2018,0.11,26,201
1145940,6283535,Private room,230,2,157,10/04/2019,2.28,1,254
1146036,971511,Entire home/apt,80,2,48,01/03/2019,1.02,2,261
1146219,2475597,Entire home/apt,75,3,60,31/03/2019,1.01,1,187
1147133,6211121,Entire home/apt,20,2,23,29/09/2018,2.02,1,221
1147333,6289073,Private room,171,4,51,19/03/2019,0.82,1,300
1147500,612665,Private room,90,3,75,24/03/2019,1.05,8,167
1149191,6299958,Private room,100,2,78,07/04/2019,1.11,3,223
1150062,6299958,Entire home/apt,95,2,55,04/11/2018,1.5,3,250
1150128,6299958,Private room,95,2,76,02/01/2019,1.22,3,253
1153834,4878564,Entire home/apt,60,31,6,15/06/2017,0.11,1,358
1154032,6324464,Entire home/apt,79,1,241,13/03/2019,3.37,1,306
1154761,14580203,Entire home/apt,150,2,28,14/02/2019,0.39,5,236
1157783,1881106,Entire home/apt,27,2,121,23/03/2019,1.72,1,22
1158951,5692445,Entire home/apt,39,2,141,31/03/2019,1.97,8,339
1159222,5559536,Entire home/apt,30,2,68,29/03/2019,1.48,2,11
1161251,4433021,Entire home/apt,83,3,136,24/03/2019,1.9,1,30
1161417,6362995,Entire home/apt,85,3,273,26/03/2019,3.82,1,230
1164746,7521925,Private room,40,31,10,14/08/2018,0.14,3,8
1165432,3744544,Entire home/apt,270,3,77,31/03/2019,1.27,33,329
1166075,6386184,Entire home/apt,28,2,48,02/03/2019,2.35,1,0
1166491,1205494,Private room,90,1,11,29/03/2019,0.18,7,338
1168945,3376710,Entire home/apt,50,32,2,29/04/2017,0.04,43,365
1169088,1986299,Private room,90,1,23,08/04/2019,1.11,19,200
1169142,3744544,Entire home/apt,80,3,39,14/03/2019,1.1,33,333
1169191,6402136,Entire home/apt,399,2,134,16/03/2019,1.91,1,310
1169430,2439400,Entire home/apt,180,2,33,31/03/2019,0.62,41,200
1182345,6444776,Entire home/apt,149,4,59,04/04/2019,0.84,1,81
1186442,6436558,Entire home/apt,115,3,16,02/01/2019,0.27,9,292
1186506,6436558,Entire home/apt,115,3,36,02/01/2019,0.59,9,272
1186521,6436558,Entire home/apt,110,3,44,12/03/2019,0.74,9,293
1186539,6436558,Entire home/apt,105,3,41,09/12/2018,0.68,9,296
1186559,6436558,Entire home/apt,105,3,13,27/11/2018,0.22,9,283
1188839,5432336,Private room,58,1,216,21/03/2019,3.03,12,335
1190491,2774073,Entire home/apt,77,4,143,08/04/2019,2.05,1,80
1193162,2083075,Entire home/apt,101,3,208,04/04/2019,2.93,3,79
1193842,6524172,Entire home/apt,150,7,57,01/03/2019,0.85,1,285
1193941,6524683,Private room,48,2,425,08/04/2019,6.33,2,29
1196312,6521082,Entire home/apt,62,32,5,31/07/2018,0.15,10,333
1196332,6521082,Entire home/apt,109,3,26,24/03/2019,0.53,10,207
1196349,6521082,Entire home/apt,109,3,19,25/03/2019,0.52,10,198
1196359,6521082,Private room,199,3,54,31/03/2019,1.11,10,210
1196377,6521082,Private room,113,3,36,17/03/2019,0.78,10,181
1196404,6521082,Private room,200,3,45,19/02/2019,0.9,10,208
1196447,6521082,Private room,109,3,16,02/04/2019,0.37,10,200
1197169,3479346,Entire home/apt,349,2,143,02/04/2019,2.03,14,240
1197458,6541786,Private room,25,1,294,29/03/2019,4.15,1,181
1198074,6544866,Private room,170,1,26,05/04/2019,0.69,9,173
1199380,131794,Private room,169,1,184,04/04/2019,2.6,24,309
1199382,131794,Entire home/apt,169,1,164,29/03/2019,2.3,24,276
1199594,6467356,Entire home/apt,110,1,348,08/04/2019,4.96,1,200
1201871,3039107,Entire home/apt,87,2,98,27/03/2019,1.39,28,241
1202829,6569922,Entire home/apt,90,3,254,08/04/2019,3.59,1,166
1204161,6001714,Entire home/apt,15,30,42,17/02/2019,0.59,2,205
1204581,700165,Private room,45,3,5,10/10/2018,0.09,4,50
1206052,2848016,Entire home/apt,100,2,50,18/03/2019,0.72,1,305
1206820,5933563,Entire home/apt,95,2,17,09/09/2017,0.24,2,364
1207407,131794,Entire home/apt,169,1,68,01/01/2019,0.96,24,305
1269272,136853,Entire home/apt,100,1,54,01/10/2018,0.92,41,230
1270627,3412218,Entire home/apt,81,3,42,24/10/2018,0.61,1,297
1271555,6920683,Entire home/apt,172,3,141,01/01/2019,2.03,2,255
1271836,2304846,Entire home/apt,70,2,112,21/03/2019,1.6,3,168
1272304,206635,Private room,130,3,76,06/03/2019,1.12,3,191
1273077,6929132,Entire home/apt,45,3,42,23/07/2018,0.63,1,226
1276036,6859113,Entire home/apt,72,1,137,06/04/2019,1.96,1,229
1279308,6860226,Private room,120,3,80,07/01/2019,1.16,1,191
1282669,4960486,Entire home/apt,65,3,306,04/04/2019,4.77,1,248
1284653,6988795,Entire home/apt,42,4,354,08/04/2019,5.05,2,131
1285739,71615,Entire home/apt,85,1,19,28/03/2019,0.32,28,198
1286069,3376710,Entire home/apt,145,2,2,26/12/2018,0.5,43,304
1288165,860071,Entire home/apt,21,1,1,13/08/2015,0.02,3,68
1290278,7016641,Entire home/apt,135,3,198,18/03/2019,2.84,1,141
1291052,7019831,Entire home/apt,42,2,118,02/04/2019,2.37,2,285
1291562,7020955,Entire home/apt,20,4,20,24/09/2018,0.38,2,0
1291971,7024519,Entire home/apt,45,3,237,04/04/2019,3.4,1,217
1293412,7032776,Entire home/apt,130,3,190,31/03/2019,2.74,1,273
1294410,5369383,Entire home/apt,196,3,33,18/03/2019,0.48,1,277
1295958,7047484,Entire home/apt,52,3,52,03/03/2019,0.87,1,346
1296121,7046025,Entire home/apt,90,3,173,06/04/2019,2.51,1,204
1296977,7051599,Entire home/apt,89,2,133,18/03/2019,1.94,1,229
1304470,7091581,Entire home/apt,50,2,357,04/04/2019,5.13,3,248
1305640,7088764,Private room,100,2,112,31/03/2019,1.61,1,204
1307332,2608358,Entire home/apt,50,3,39,08/04/2019,0.56,3,337
1307947,7110050,Entire home/apt,57,30,18,12/09/2014,0.26,1,363
1308517,323105,Private room,110,3,17,31/08/2017,0.25,2,0
1309102,5364088,Entire home/apt,45,2,38,26/08/2018,0.56,3,73
1309206,7091581,Entire home/apt,50,2,195,09/03/2019,2.81,3,274
1312051,7130005,Entire home/apt,30,32,60,14/02/2019,0.87,1,63
1314537,6656278,Entire home/apt,30,4,84,08/04/2019,2.11,1,83
1314672,7143233,Entire home/apt,100,5,119,20/02/2019,1.7,1,30
1319021,3313906,Entire home/apt,210,3,127,22/03/2019,1.87,2,109
1320149,3454952,Entire home/apt,90,3,155,04/04/2019,2.26,3,144
1322861,7180803,Private room,38,2,97,08/04/2019,2.23,1,61
1323824,3691656,Private room,29,2,126,08/06/2017,1.8,1,222
1327003,663209,Entire home/apt,70,2,8,23/09/2015,0.18,1,99
1328996,131794,Entire home/apt,199,1,124,18/02/2019,1.79,24,303
1329357,1383425,Entire home/apt,120,3,126,30/03/2019,1.81,1,196
1329829,7209763,Entire home/apt,157,4,257,06/04/2019,3.68,4,122
1329890,7186444,Entire home/apt,40,3,12,03/06/2018,0.2,1,0
1331475,3340010,Entire home/apt,35,3,174,01/08/2017,2.56,1,0
1331957,384518,Entire home/apt,85,3,90,06/04/2019,1.29,1,256
1332929,7218242,Private room,63,2,326,06/04/2019,4.67,1,9
1333207,7231693,Entire home/apt,55,1,18,31/10/2018,0.32,1,100
1334863,7238727,Entire home/apt,95,3,136,12/03/2019,1.99,1,277
1338105,3744544,Entire home/apt,160,3,62,08/04/2019,1.1,33,316
1338956,7215439,Entire home/apt,100,1,27,12/12/2018,0.44,4,320
1339422,7148140,Entire home/apt,40,20,77,16/03/2019,1.27,4,337
1339639,1986299,Entire home/apt,70,1,33,25/03/2019,1.29,19,152
1340503,7270766,Private room,34,1,35,01/03/2019,0.6,1,339
1342549,7281684,Entire home/apt,94,3,378,27/03/2019,5.43,1,144
1343256,7285494,Entire home/apt,59,2,287,25/03/2019,4.12,1,176
1343928,7290200,Private room,99,3,154,21/03/2019,2.24,5,152
1344458,5364088,Entire home/apt,45,2,5,24/02/2017,0.07,3,101
1344702,7294913,Private room,75,2,206,25/03/2019,2.98,1,264
1346626,7305607,Private room,50,3,26,28/02/2019,0.43,1,311
1346797,2366949,Private room,75,2,96,26/10/2018,1.44,12,263
1348754,7020955,Entire home/apt,29,4,37,31/12/2018,1.14,2,6
1354353,7276241,Entire home/apt,35,3,82,30/07/2017,1.18,1,98
1354875,3885805,Private room,60,3,178,04/04/2019,2.64,3,303
1356102,5364088,Private room,45,1,17,11/07/2015,0.28,3,8