Paul Woitaschek
06/20/2023, 2:22 PMplatform
.
so that I can show multiple `bars`next to each other.
shared
.groupBy {
date.map {
val date = it.atOffset(ZoneOffset.UTC)
date.monthValue.toString() + "`" + date.year.toString().takeLast(2)
}
}
.count("commits")
.plot {
bars {
y("commits")
x(date)
}
}
Paul Woitaschek
06/20/2023, 2:46 PMand
Now I only ask myself how to plot that by group with multiple barsroman.belov
06/21/2023, 1:16 PMPaul Woitaschek
06/21/2023, 1:16 PMPaul Woitaschek
06/21/2023, 2:15 PMroman.belov
06/21/2023, 4:14 PMPaul Woitaschek
06/21/2023, 4:21 PMroman.belov
06/21/2023, 4:25 PM