-
Notifications
You must be signed in to change notification settings - Fork 2
marble‐plotter‐dous
Miguel Fernandes edited this page Sep 18, 2017
·
2 revisions
Plotter.
This plotter generates charts of extracted and processed tweets, along a time axis. It uses google charts as chart library, so an internet connection is needed.
Access to internet in the browser used to view the charts (google charts is not available offline).
title: The title of the chart.
description: A description of the chart, giving a little insight on what you are plotting.
stepSize: The minimum step size in the time axis, in ms.
type: The type of chart you want. Options available:
- PlotAll: Plot all extracted tweets.
- PlotCreated: Plot only extracted original tweets (no retweets).
- PlotRetweeted: Plot only extracted retweets.
- PlotCreatedRetweeted: Plot both extracted original tweets and retweets.
- PlotUniqueUsers: Plot unique users tweeting about the subject.
- PlotAllProcessed: Plot all processed tweets by polarity.
- PlotOriginalsProcessed: Plot all processed original tweets by polarity.
- PlotRetweetedProcessed: Plot all processed retweets by polarity.
- PlotAveragePolarity: Plot average polarity by time.
- PlotTotalRatioPolarity: Plot sum of positive vs negative tweets by time.
###Example Recipe
{
"name": "plotter-simple",
"options": {
"title": "Processed",
"description": "All processed tweets.",
"type": "PlotAllProcessed",
"stepSize": 86400000
}
}