2022-04-18 22:29:09 +00:00
|
|
|
accessing
|
|
|
|
exportRepliesHistogramWithBars: aNumberOfBars
|
|
|
|
|
|
|
|
| tweetsByTimeSpan subtotals repliesColor x tweetsHistogram diagram |
|
|
|
|
|
|
|
|
tweetsByTimeSpan := self collectMessages: [ self replies ] byTimeSpanSplits: aNumberOfBars.
|
|
|
|
subtotals := tweetsByTimeSpan values collect: [ :collection | collection size ].
|
|
|
|
repliesColor := (Color r:(246/255) g:(185/255) b:(46/255)).
|
|
|
|
x := 1 to: subtotals size.
|
|
|
|
tweetsHistogram := RSChart new.
|
|
|
|
tweetsHistogram extent: 800@200.
|
|
|
|
diagram := RSBarPlot new x: x y:subtotals.
|
|
|
|
diagram color: repliesColor.
|
|
|
|
tweetsHistogram addPlot: diagram.
|
|
|
|
tweetsHistogram addDecoration: (RSHorizontalTick new
|
|
|
|
fromNames: tweetsByTimeSpan keys;
|
|
|
|
labelRotation: 0;
|
|
|
|
fontSize: 80 /aNumberOfBars;
|
|
|
|
yourself).
|
|
|
|
tweetsHistogram addDecoration: (RSVerticalTick new
|
|
|
|
integer;
|
|
|
|
fontSize: 80 /aNumberOfBars).
|
|
|
|
tweetsHistogram build.
|
|
|
|
tweetsHistogram canvas pngExporter
|
|
|
|
zoomToShapes;
|
|
|
|
noFixedShapes;
|
|
|
|
fileName: (self folder / 'replies-histogram.png')fullName;
|
|
|
|
export.
|
2022-04-19 00:19:49 +00:00
|
|
|
tweetsHistogram canvas pdfExporter
|
|
|
|
zoomToShapes;
|
|
|
|
noFixedShapes;
|
|
|
|
fileName: (self folder / 'replies-histogram.pdf')fullName;
|
|
|
|
export.
|
2022-04-18 22:29:09 +00:00
|
|
|
^ self folder / 'replies-histogram.png'
|