forked from codemistic/General-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWhatsapp Chat Visualizer
213 lines (173 loc) · 6.94 KB
/
Whatsapp Chat Visualizer
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
Requires exported chat text file which outputs image chart, with visualisation.
.ipynb file code
preferably run as jupyter notebook
*/
# %%
import datetime
import os
import re
import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt
from os import path
from dotenv import load_dotenv
from wordcloud import WordCloud, STOPWORDS
BACKGROUND_COLOR = '#f0efeb'
LOOKBACK_WEEKS = 104
load_dotenv()
plt.rcParams["font.family"] = ['Kristen ITC']
plt.rcParams["figure.facecolor"] = BACKGROUND_COLOR
plt.rcParams["axes.facecolor"] = BACKGROUND_COLOR
plt.rcParams["axes.spines.top"] = False
plt.rcParams["axes.spines.right"] = False
plt.rcParams["axes.spines.left"] = False
plt.rcParams["axes.spines.bottom"] = False
# %%
def startsWithDate(s):
pattern = '^([0-2][0-9]|(3)[0-1][0-9])(\/)(([0-9])|((1)[0-2]))(\/)(\d{2}|\d{4})'
result = re.match(pattern, s)
if result:
return True
return False
def startsWithAuthor(s):
patterns = [
'([\w]+):', # First Name
'([\w]+[\s]+[\w]+):', # First Name + Last Name
'([\w]+[\s]+[\w]+[\s]+[\w]+[\]):', # First Name + Middle Name + Last Name
'([+]\d{2} \d{5} \d{5}):', # Mobile Number (India)
'([+]\d{2} \d{3} \d{3} \d{4}):', # Mobile Number (US)
]
pattern = '^' + '|'.join(patterns)
result = re.match(pattern, s)
if result:
return True
return False
def getDataPoint(line):
# line = 18/06/17, 22:47 - Loki: Why do you have 2 numbers, Banner?
# splitLine = ['18/06/17, 22:47', 'Loki: Why do you have 2 numbers, Banner?']
splitLine = line.split(' - ')
dateTime = splitLine[0] # dateTime = '18/06/17, 22:47'
date, time = dateTime.split(', ') # date = '18/06/17'; time = '22:47'
# message = 'Loki: Why do you have 2 numbers, Banner?'
message = ' '.join(splitLine[1:])
# if startsWithAuthor(message): # True
# splitMessage = ['Loki', 'Why do you have 2 numbers, Banner?']
splitMessage = message.split(': ')
author = splitMessage[0] # author = 'Loki'
# message = 'Why do you have 2 numbers, Banner?'
message = ' '.join(splitMessage[1:])
# else:
# author = None
return date, time, author, message
# %%
def createDataFrame(filename):
df = open(filename , encoding="utf-8")
lines = df.readlines()
df.close()
parsedData = []
messageBuffer = [] # Buffer to capture intermediate output for multi-line messages
# Intermediate variables to keep track of the current message being processed
date, time, author = None, None, None
# remove /n at the end of each line
for index, line in enumerate(lines):
lines[index] = line.strip()
for line in lines:
if (startsWithDate(line)):
splitLine = line.split(' - ')
dateTime = splitLine[0]
date, time = dateTime.split(', ')
message = ' '.join(splitLine[1:])
if startsWithDate(line):
# Check if the message buffer contains characters from previous iterations
if len(messageBuffer) > 0:
# Save the tokens from the previous message in parsedData
parsedData.append([date, time, author, ' '.join(messageBuffer)])
# Clear the message buffer so that it can be used for the next message
messageBuffer.clear()
# Identify and extract tokens from the line
date, time, author, message = getDataPoint(line)
messageBuffer.append(message) # Append message to buffer
else:
# If a line doesn't start with a Date Time pattern, then it is part of a multi-line message. So, just append to buffer
messageBuffer.append(line)
chat_df = pd.DataFrame(parsedData, columns=['Date', 'Time', 'Author', 'Message'])
chat_df['datetime'] = pd.to_datetime(chat_df['Date'] + ' ' + chat_df['Time'],
infer_datetime_format=True)
chat_df['weekday'] = chat_df['datetime'].dt.day_name()
chat_df['words'] = chat_df['Message'].apply(lambda s: len(s.split(' ')))
chat_df['letters'] = chat_df['Message'].apply(lambda s: len(s))
return chat_df
# %%
file=os.getenv('FILENAME')
# %%
chat_df=createDataFrame(file)
chat_df.head()
# %% [markdown]
# # Visualisations
# %% [markdown]
# Most Messages done by
# %% [markdown]
# Messages per day
# %%
df = chat_df[chat_df['datetime'] > chat_df['datetime'].max() - pd.Timedelta(weeks=LOOKBACK_WEEKS)]
df["hour"] = chat_df["datetime"].dt.hour
# %%
df_daily_mess = df.groupby(by=df['datetime'].dt.date)['Message'].count().reset_index()
df_daily_mess["messsagecount_rm28"] = df_daily_mess["Message"].rolling(28, min_periods=13, center=True).mean()
df_daily_mess
# %%
fig, ax = plt.subplots(figsize=(8,2.5))
sns.lineplot(data=df_daily_mess, x='datetime', y='messsagecount_rm28', ax=ax, label='Label', color='#e76f51', lw=2)
ax.set_ylim(0,200)
ax.set_xlim([datetime.date(2019, 11, 1), datetime.date(2021, 12, 1)])
ax.tick_params(axis='x', rotation=45)
ax.set_title("Messages per Day (28 Days Rolling Mean)", fontdict={"fontsize": 15})
ax.set_xlabel(None)
ax.set_ylabel(None)
plt.legend(frameon = False, bbox_to_anchor=(1.04,0.5), loc="center left")
plt.tight_layout()
# %% [markdown]
# Messages per Daytime
# %%
df_circle = df.groupby(by='hour')['Message'].count().reset_index()
time = df_circle['hour']
count = df_circle['Message']
c = np.zeros(24)
c[time] = count
count = c
f = plt.figure(figsize=(3.5, 3.5))
ax = plt.subplot(111, projection="polar")
x = np.arange(0, 2 * np.pi, 2 * np.pi / len(count)) + np.pi / len(count)
bars = ax.bar(x, count, width=2 * np.pi / len(count),
alpha=0.4, color='#e76f51', bottom=0)
max_ind = np.argmax(count)
ax.bar(x[max_ind],count[max_ind], bottom=0,
width=2 * np.pi / len(count), alpha=1, color='#e76f51')
ax.bar(x, np.max(count) * np.ones(len(count)), width=2 * np.pi / len(count),
alpha=0.15, bottom=0, color='#cb997e', edgecolor="black")
ax.set_theta_direction(-1)
ax.grid(False)
ax.spines["polar"].set_visible(False)
ax.set_theta_offset(np.pi / 2)
ax.set_xticks(np.linspace(0, 2 * np.pi, 24, endpoint=False))
ticks = ["12 AM", "", "", "3 AM", "", "", "6 AM", "", "", "9 AM",
"", "", "12 PM", "", "", "3 PM", "", "", "6 PM", "", "",
"9 PM", "", ""]
ax.set_xticklabels(ticks)
plt.setp(ax.get_yticklabels(), visible=False)
plt.tight_layout()
# %% [markdown]
# Word Cloud
# %%
messages = [word.split() for word in chat_df["Message"].values]
words = [word.lower() for sublist in messages for word in sublist]
stopwords = STOPWORDS.update(['media', 'omitted', 'deleted','missed', 'voice', 'call'])
wordcloud = WordCloud(stopwords=stopwords, width=500, height=500,
background_color='#f0efeb', min_word_length=2,
min_font_size=10).generate(' '.join(words))
plt.figure(figsize = (7, 7), facecolor = None)
plt.imshow(wordcloud)
plt.axis("off")
plt.tight_layout()