-
Notifications
You must be signed in to change notification settings - Fork 2
/
graphing.py
37 lines (26 loc) · 831 Bytes
/
graphing.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import matplotlib.pyplot as plt
import matplotlib.animation as animation
from matplotlib import style
import time
style.use("ggplot")
fig = plt.figure()
ax1 = fig.add_subplot(1, 1, 1)
def animate(i):
pullData = open("twitter-out.txt", "r").read() ## data-file name , put name where datafile is stored
lines = pullData.split('\n')
xar = []
yar = []
x = 0
y = 0
for l in lines[-200:]: ## this saves the last 200 lines of data to put on for graphing.
x += 1
if "pos" in l:
y += 1
elif "neg" in l:
y -= 1 ## to remove the negative graphing you can put 0.3 instead 1
xar.append(x)
yar.append(y)
ax1.clear()
ax1.plot(xar, yar)
ani = animation.FuncAnimation(fig, animate, interval=1000)
plt.show()