Readme.txt 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. ==========================================
  2. Bike Sharing Dataset
  3. ==========================================
  4. Hadi Fanaee-T
  5. Laboratory of Artificial Intelligence and Decision Support (LIAAD), University of Porto
  6. INESC Porto, Campus da FEUP
  7. Rua Dr. Roberto Frias, 378
  8. 4200 - 465 Porto, Portugal
  9. =========================================
  10. Background
  11. =========================================
  12. Bike sharing systems are new generation of traditional bike rentals where whole process from membership, rental and return
  13. back has become automatic. Through these systems, user is able to easily rent a bike from a particular position and return
  14. back at another position. Currently, there are about over 500 bike-sharing programs around the world which is composed of
  15. over 500 thousands bicycles. Today, there exists great interest in these systems due to their important role in traffic,
  16. environmental and health issues.
  17. Apart from interesting real world applications of bike sharing systems, the characteristics of data being generated by
  18. these systems make them attractive for the research. Opposed to other transport services such as bus or subway, the duration
  19. of travel, departure and arrival position is explicitly recorded in these systems. This feature turns bike sharing system into
  20. a virtual sensor network that can be used for sensing mobility in the city. Hence, it is expected that most of important
  21. events in the city could be detected via monitoring these data.
  22. =========================================
  23. Data Set
  24. =========================================
  25. Bike-sharing rental process is highly correlated to the environmental and seasonal settings. For instance, weather conditions,
  26. precipitation, day of week, season, hour of the day, etc. can affect the rental behaviors. The core data set is related to
  27. the two-year historical log corresponding to years 2011 and 2012 from Capital Bikeshare system, Washington D.C., USA which is
  28. publicly available in http://capitalbikeshare.com/system-data. We aggregated the data on two hourly and daily basis and then
  29. extracted and added the corresponding weather and seasonal information. Weather information are extracted from http://www.freemeteo.com.
  30. =========================================
  31. Associated tasks
  32. =========================================
  33. - Regression:
  34. Predication of bike rental count hourly or daily based on the environmental and seasonal settings.
  35. - Event and Anomaly Detection:
  36. Count of rented bikes are also correlated to some events in the town which easily are traceable via search engines.
  37. For instance, query like "2012-10-30 washington d.c." in Google returns related results to Hurricane Sandy. Some of the important events are
  38. identified in [1]. Therefore the data can be used for validation of anomaly or event detection algorithms as well.
  39. =========================================
  40. Files
  41. =========================================
  42. - Readme.txt
  43. - hour.csv : bike sharing counts aggregated on hourly basis. Records: 17379 hours
  44. - day.csv - bike sharing counts aggregated on daily basis. Records: 731 days
  45. =========================================
  46. Dataset characteristics
  47. =========================================
  48. Both hour.csv and day.csv have the following fields, except hr which is not available in day.csv
  49. - instant: record index
  50. - dteday : date
  51. - season : season (1:springer, 2:summer, 3:fall, 4:winter)
  52. - yr : year (0: 2011, 1:2012)
  53. - mnth : month ( 1 to 12)
  54. - hr : hour (0 to 23)
  55. - holiday : weather day is holiday or not (extracted from http://dchr.dc.gov/page/holiday-schedule)
  56. - weekday : day of the week
  57. - workingday : if day is neither weekend nor holiday is 1, otherwise is 0.
  58. + weathersit :
  59. - 1: Clear, Few clouds, Partly cloudy, Partly cloudy
  60. - 2: Mist + Cloudy, Mist + Broken clouds, Mist + Few clouds, Mist
  61. - 3: Light Snow, Light Rain + Thunderstorm + Scattered clouds, Light Rain + Scattered clouds
  62. - 4: Heavy Rain + Ice Pallets + Thunderstorm + Mist, Snow + Fog
  63. - temp : Normalized temperature in Celsius. The values are divided to 41 (max)
  64. - atemp: Normalized feeling temperature in Celsius. The values are divided to 50 (max)
  65. - hum: Normalized humidity. The values are divided to 100 (max)
  66. - windspeed: Normalized wind speed. The values are divided to 67 (max)
  67. - casual: count of casual users
  68. - registered: count of registered users
  69. - cnt: count of total rental bikes including both casual and registered
  70. =========================================
  71. License
  72. =========================================
  73. Use of this dataset in publications must be cited to the following publication:
  74. [1] Fanaee-T, Hadi, and Gama, Joao, "Event labeling combining ensemble detectors and background knowledge", Progress in Artificial Intelligence (2013): pp. 1-15, Springer Berlin Heidelberg, doi:10.1007/s13748-013-0040-3.
  75. @article{
  76. year={2013},
  77. issn={2192-6352},
  78. journal={Progress in Artificial Intelligence},
  79. doi={10.1007/s13748-013-0040-3},
  80. title={Event labeling combining ensemble detectors and background knowledge},
  81. url={http://dx.doi.org/10.1007/s13748-013-0040-3},
  82. publisher={Springer Berlin Heidelberg},
  83. keywords={Event labeling; Event detection; Ensemble learning; Background knowledge},
  84. author={Fanaee-T, Hadi and Gama, Joao},
  85. pages={1-15}
  86. }
  87. =========================================
  88. Contact
  89. =========================================
  90. For further information about this dataset please contact Hadi Fanaee-T (hadi.fanaee@fe.up.pt)