Velib | R Documentation |
The Velib data set contains data from the bike sharing system of Paris, called Velib. The data are loading profiles of the bike stations over seven days. The data were collected every hour during the period Sunday 1st Sept. - Sunday 7th Sept., 2014.
data("Velib")
The format is: - data: the loading profiles (nb of available bikes / nb of bike docks) of the 1189 stations for 7 days every hour. - position: the longitude and latitude of the 1189 bike stations.
The real time data are available at https://developer.jcdecaux.com/ (with an api key).
The data were first used in C. Bouveyron, E. Come and J. Jacques, The discriminative functional mixture model for a comparative analysis of bike sharing systems, The Annals of Applied Statistics, vol. 9 (4), pp. 1726-1760, 2015 (http://dx.doi.org/10.1214/15-AOAS861).
data(Velib) set.seed(12345) # Co-clustering with funLBM out = funLBM(Velib$data,K=4,L=2,basis.name="fourier",nbasis=5) # Visualization of results plot(out,type='blocks') plot(out,type='proportions') plot(out,type='means')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.