All Projects → KeithTheEE → TwitterEventBot

KeithTheEE / TwitterEventBot

Licence: MIT License
No description or website provided.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to TwitterEventBot

TinyFlowerBeds
Educational bot that posts a tiny flower bed on Twitter every few hours. Check it out if you're new to Python and open source!
Stars: ✭ 12 (-7.69%)
Mutual labels:  twitter-bot
twitter-bot-bootstrap
Template for creating a twitter bot using python (twython) and heroku
Stars: ✭ 26 (+100%)
Mutual labels:  twitter-bot
twittered
Twitter API client for Java developers
Stars: ✭ 170 (+1207.69%)
Mutual labels:  twitter-bot
sslscrobbler
Serato ScratchLive! / Serato DJ Scrobbler and Twitter bot
Stars: ✭ 91 (+600%)
Mutual labels:  twitter-bot
twitter-crypto-bot
This is a Twitter bot that tweets about cryptocurrencies prices every certain amount of minutes
Stars: ✭ 21 (+61.54%)
Mutual labels:  twitter-bot
gramtion
Twitter bot for generating photo descriptions (alt text)
Stars: ✭ 21 (+61.54%)
Mutual labels:  twitter-bot
tweet-delete
Self-destructing Tweets so you too can be cool 😎
Stars: ✭ 68 (+423.08%)
Mutual labels:  twitter-bot
twitbot
🦉Just a simple twitter bot for tipping in EOS
Stars: ✭ 18 (+38.46%)
Mutual labels:  twitter-bot
first-timers-only-bot
① First timers only issue tweeting bot.
Stars: ✭ 50 (+284.62%)
Mutual labels:  twitter-bot
larry
Larry 🐦 is a really simple Twitter bot generator that tweets random repositories from Github built in Go
Stars: ✭ 64 (+392.31%)
Mutual labels:  twitter-bot
tweet-delete-bot
A bot that deletes and un-favourites tweets that are more than 10 days old. Schedule this to run once a day to become an ephemeral tweep, just like http://twitter.com/JacksonBates
Stars: ✭ 39 (+200%)
Mutual labels:  twitter-bot
GetVideoBot
Twitter bot to help you download videos and gifs
Stars: ✭ 34 (+161.54%)
Mutual labels:  twitter-bot
Twitter-bot
Twitter bot which waits for #hashTag and sends weather update of city via tweets
Stars: ✭ 20 (+53.85%)
Mutual labels:  twitter-bot
archillect-context
Twitter bot that posts keywords related to Archillect's images
Stars: ✭ 45 (+246.15%)
Mutual labels:  twitter-bot
Raymo111
My awesome profile README
Stars: ✭ 110 (+746.15%)
Mutual labels:  twitter-bot
poemexe
Code for the poem.exe bot on Twitter and Mastodon.
Stars: ✭ 17 (+30.77%)
Mutual labels:  twitter-bot
honk-twitter-bot
A simple honk twitter bot that reply honk slash command
Stars: ✭ 19 (+46.15%)
Mutual labels:  twitter-bot
rust-trending
A twitter bot (@RustTrending) to tweet trending rust repositories, inspired by @TrendingGithub
Stars: ✭ 113 (+769.23%)
Mutual labels:  twitter-bot
Tweeterify
A Twitter bot which recommends some Spotify top charts songs to people
Stars: ✭ 18 (+38.46%)
Mutual labels:  twitter-bot
TgTwitterStreamer
Continous Integration from Twitter to Telegram.
Stars: ✭ 55 (+323.08%)
Mutual labels:  twitter-bot

Crowd Source Twitter: an Event Bot


Author(s): Keith Murray

Contact: [email protected]

This is the brains of a twitter bot called Event Tracker

Basic Opperation:

Every few minutes the bot runs and searches twitter for recent tweets with a given keyword, (the 'event') in it. The tweets timestamps are sorted, and the time between each neighboring tweet is recorded. It then takes the average amount of time in seconds between each of the returned tweets as well as the standard deviation and uses that value to determine if an event has occured compared to historical averages. At the end of each run, it archives the averge time between tweets.

To compare against the historical averages, the program pulls the archived sample values and gets the historic average and standard deviation over all recorded samples.

Reading the Plots

sample_plot

The plot is divided up into two halves, a historic histogram, and a modeled distrobution plot.

Focusing on the top plot:

The blue values in the plot show a histogram over all recorded average 'time between tweets'. In that plot, there is a verticle red line which represents the current sample average, that way you can tell how it stacks up against what the bot usually measures.

Focusing on the bottom plot:

Stripping away the noisy histogram data, the second plot provides modeled distrobutions.

The solid blue curve takes all archived historical averages and generates a guassian distrobution using the average of the historical averages and the standard deviation of the historical averages.

The solid green curve shows a gaussian distrobution for the current collection of tweets, organized by the time between those current tweets.

The verticle red line extends from the top plot showing the current sample average time between tweets.

From the solid green and blue curves, it's apperent that gaussian distrobuitons are not the necessarily best way to model the current and historic distrobutions of the time between tweets. To try to get a better visual model, Kernel Density Estimation (KDE) is used.

Each KDE distrobution uses the Epanechnikov to distribute a curve around each sample, then the curves are added together and normalized for every sample

The solid red curve is made from the past year of historic records and modeled using KDE.

The dotted green curve is made from the current twitter sample, where the tweets timestamps are sorted, and the time between each neighboring tweet is recorded. This is distinct from the historic values, as the average of this set of samples is recorded and the set of averages make up the historic distrobutions.

The little black crosses at the bottom are the individual time between tweet samples. The dotted greed curve should fit over these crosses, offering more insight into how time between tweet values are distrobuted.

The dotted pink line is made from the recorded averages of the past week of samples. This shows how different the current distrobution is from what has been recently happening on twitter.

Weekly Summary Plot

sample_weekly_summary

This plot shows how many tweets per second about an event occurred over the past week. Each time the bot ran in the past week, it recorded the average value of the time between tweets in that runtime sample. This plot displays the inverse value, tweets per second so that the higher the value in this plot, the more tweets were made.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].