Bicycle Hires
September 2, 2020 ยท View on GitHub
import VegaLite exposing (..)
Bicycle Hires
barChart : Spec
barChart =
let
enc =
encoding
<< position X [ pName "AvHireTime" ]
<< position Y [ pAggregate opCount ]
in
toVegaLite
[ dataFromUrl "http://gicentre.github.io/data/bicycleHiresLondon.csv" [], enc [], bar [] ]