Implementing reporting periods to limit messages processing inside a predefined timespan.
This commit is contained in:
parent
4abb9fe987
commit
459502cd5f
@ -4,7 +4,7 @@ exportOverviewReportLatex
|
||||
self
|
||||
exportDefaultReport;
|
||||
externalWordCloud;
|
||||
exportTweetsHistogramWithBars: 7 between: 'March 13 2022' and: 'May 1 2022';
|
||||
exportTweetsHistogramWithBars: 7;
|
||||
exportRetweetsHistogramWithBars: 7;
|
||||
exportRepliesHistogramWithBars: 7;
|
||||
exportQuotesHistogramWithBars: 7.
|
||||
|
@ -1,34 +0,0 @@
|
||||
accessing
|
||||
exportTweetsHistogramWithBars: aNumberOfBars between: startDate and: endDate
|
||||
|
||||
| tweetsByTimeSpan subtotals tweetsHistogram diagram |
|
||||
|
||||
tweetsByTimeSpan := self collectMessages: [ self tweetsBetween: startDate and: endDate ] byTimeSpanSplits: aNumberOfBars.
|
||||
subtotals := tweetsByTimeSpan values collect: [ :collection | collection size ].
|
||||
tweetsHistogram := RSChart new.
|
||||
tweetsHistogram extent: 800@200.
|
||||
diagram := RSBarPlot new
|
||||
x: (1 to: subtotals size)
|
||||
y:subtotals.
|
||||
diagram color: (Color r:(91/255) g:(131/255) b:(222/255)).
|
||||
tweetsHistogram addPlot: diagram.
|
||||
tweetsHistogram addDecoration: (RSHorizontalTick new
|
||||
fromNames: tweetsByTimeSpan keys;
|
||||
labelRotation: 0;
|
||||
fontSize: 72 /aNumberOfBars;
|
||||
yourself).
|
||||
tweetsHistogram addDecoration: (RSVerticalTick new
|
||||
integer;
|
||||
fontSize: 72 /aNumberOfBars).
|
||||
tweetsHistogram build.
|
||||
tweetsHistogram canvas pngExporter
|
||||
zoomToShapes;
|
||||
noFixedShapes;
|
||||
fileName: (self folder / 'tweets-histogram.png')fullName;
|
||||
export.
|
||||
tweetsHistogram canvas pdfExporter
|
||||
zoomToShapes;
|
||||
noFixedShapes;
|
||||
fileName: (self folder / 'tweets-histogram.pdf')fullName;
|
||||
export.
|
||||
^ self folder / 'tweets-histogram.png'
|
@ -0,0 +1,5 @@
|
||||
accessing
|
||||
reportingPeriod
|
||||
^ self config
|
||||
at: 'reportingPeriod'
|
||||
ifAbsentPut: [ { self messages oldest created . self messages newest created } ]
|
@ -1,3 +0,0 @@
|
||||
accessing
|
||||
tweetsBetween: startDate and: endDate
|
||||
^ self tweets select: [ :each | each created between: startDate asDate and: endDate asDate ]
|
@ -1,3 +1,4 @@
|
||||
accessing
|
||||
messages
|
||||
^ messages ifNil: [ messages := TweetsCollection new ]
|
||||
messages ifNil: [ ^ messages := TweetsCollection new ].
|
||||
^ messages select: [ :message | message created between: self reportingPeriod start and: self reportingPeriod end ]
|
@ -0,0 +1,3 @@
|
||||
accessing
|
||||
reportingPeriod
|
||||
^ self subclassResponsibility
|
Loading…
Reference in New Issue
Block a user