Socialmetrica/Socialmetrica.package/NitterUser.class/instance/exportRetweetsHistogram.st

35 lines
1.1 KiB
Smalltalk
Raw Normal View History

2022-04-19 18:55:39 +00:00
accessing
exportRetweetsHistogram
| retweetsOccurrences labels retweetColor diagram x retweetsHistogram |
retweetsOccurrences := self retweetsSortedByOccurrences.
2022-04-19 18:55:39 +00:00
retweetColor := (Color r:(217/255) g:(56/255) b: (124/255)).
x := 1 to: retweetsOccurrences size.
labels := retweetsOccurrences keys.
2022-04-19 18:55:39 +00:00
retweetsHistogram := RSChart new.
retweetsHistogram extent: 800@200.
diagram := RSBarPlot new x: x y: retweetsOccurrences values.
diagram color: retweetColor.
retweetsHistogram addPlot: diagram.
retweetsHistogram addDecoration: (RSHorizontalTick new
fromNames: labels;
labelRotation: 0;
fontSize: 80 /retweetsOccurrences size;
yourself).
2022-04-19 18:55:39 +00:00
retweetsHistogram addDecoration: (RSVerticalTick new
integer;
fontSize: 80 /retweetsOccurrences size).
2022-04-19 18:55:39 +00:00
retweetsHistogram build.
retweetsHistogram canvas pdfExporter
zoomToShapes;
noFixedShapes;
fileName: (self folder / 'retweets-histogram.pdf')fullName;
export.
retweetsHistogram canvas pngExporter
zoomToShapes;
noFixedShapes;
fileName: (self folder / 'retweets-histogram.png')fullName;
export.
^ self folder / 'retweets-histogram.png'