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