-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvacancies_eda.Rmd
381 lines (308 loc) · 11.2 KB
/
vacancies_eda.Rmd
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
---
jupyter:
jupytext:
formats: ipynb,Rmd
text_representation:
extension: .Rmd
format_name: rmarkdown
format_version: '1.2'
jupytext_version: 1.5.0
kernelspec:
display_name: Python 3
language: python
name: python3
---
```{python}
import locale
import re
import requests
import unicodedata
from collections import Counter, defaultdict
from urllib.parse import urljoin
from tqdm import tqdm
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
from matplotlib import font_manager as fm
import pymorphy2 as pm
plt.rcParams.update({'figure.figsize': [12, 8]})
locale.setlocale(locale.LC_TIME, 'ru_RU.UTF-8');
```
### Обработка шрифтов
```{python}
font_dirs = ['./fonts/', ]
font_files = fm.findSystemFonts(fontpaths=font_dirs)
font_list = fm.createFontList(font_files)
fm.fontManager.ttflist.extend(font_list)
plt.rcParams['font.family'] = 'Roboto'
```
```{python}
class KeyDict(defaultdict):
""" Подкласс словаря, который по запросу к несуществующему ключу возвращает
название ключа
"""
def __missing__(self, key):
return key
```
### Предварительная подготовка датафрейма
```{python}
morpher = pm.MorphAnalyzer()
raw = pd.read_json('vacancies.json', lines=True)
raw = raw.applymap(lambda s: unicodedata.normalize('NFKD', s) if type(s)==str else s)
raw[['date', 'place']] = raw['timestamp'].str.extract('(\d+ \w+ \d+) в (.+)')
raw = raw.drop('timestamp', axis=1)
raw['date'] = pd.to_datetime(raw['date'], format="%d %B %Y")
raw['place'] = [morpher.parse(s)[0].normal_form.title() for s in raw['place']]
```
## Основные тэги
```{python}
tags = [tag for tag_list in raw['tags'] for tag in tag_list]
tags_counter = Counter(tags)
```
```{python}
def plot_decorator(title, ylabel):
def decorator(plot_func):
def wrapper():
plot_func()
plt.title(title)
plt.gca().spines['right'].set_color('none')
plt.gca().spines['top'].set_color('none')
plt.gca().spines['left'].set_color('none')
plt.xlabel("А здесь будет: "+ ylabel)
return wrapper
return decorator
```
```{python}
plot_data = tags_counter.most_common(20)
plot_data = [[x[0] for x in plot_data],
[x[1] for x in plot_data]]
plt.barh(y=plot_data[0], width=plot_data[1], color='#87A96B')
plt.yticks(fontsize=14)
plt.xticks(np.arange(0, np.max(plot_data[1])), fontsize=14)
plt.xlabel("Количество упоминаний тэга", fontsize=14)
plt.title("20 самых частых тэгов вакансий", fontsize=18, weight='bold')
plt.gca().spines['right'].set_color('none')
plt.gca().spines['top'].set_color('none')
plt.gca().spines['left'].set_color('none')
plt.gca().invert_yaxis()
plt.show()
```
```{python}
@plot_decorator(title="Проверочка", ylabel="Шмроверочка")
def plot_tags():
plt.barh(y=plot_data[0], width=plot_data[1])
```
```{python}
plot_tags()
```
## Зарплата
* Зарплата может быть в разной валюте. В данный момент, этот отчёт умеет обрабатывать следующие валюты: KZT, USD, EUR, рубли, белорусские рубли. В ячейке ниже будут указаны валюты, которые не обработаны.
* Зарплата может выдаваться на руки и "до вычета налогов". Это важно.
```{python}
raw['salary'].str.contains('до вычета').sum()
```
```{python}
raw['salary'].count()
```
```{python}
```
```{python}
currencies = ['бел', 'USD', 'EUR', 'KZT', 'руб']
pattern = '|'.join(currencies)
unknown_currencies = raw.loc[~raw['salary'].str.contains(pattern),'salary']
unknown_currencies.value_counts()
```
Как видно, в отчёте останутся необработанными только те вакансии, где зарплата не указана.
```{python}
cur_to_code = KeyDict()
cur_to_code.update({'бел': 'BYN', 'руб': 'RUB'})
```
```{python}
API_KEY = 'f57760a8c9133fde8b40'
CUR_CODES = ['BYN', 'USD', 'EUR', 'KZT']
URL = 'https://free.currconv.com/api/v7/convert'
queries = ['_'.join((x, 'RUB')) for x in CUR_CODES]
params = {'compact': 'ultra',
'apiKey': API_KEY}
cur_dict = {'RUB': 1}
for query in queries:
params.update({'q': query})
resp = requests.get(URL, params=params)
cur_dict.update(resp.json())
cur_dict = {k[:3]: v for k,v in cur_dict.items()}
```
```{python}
cur_string='|'.join(currencies)
pattern = '(от|до)((\d+)до(\d+)|\d+)({})'.format(cur_string)
counts = raw['salary'].copy()
counts = counts.str.replace(' ', '')
counts = counts.str.extract(pattern).dropna(how='all')
counts[1] = [x if x.isdigit() else None for x in counts[1]]
counts[4] = counts[4].map(cur_to_code)
counts[4] = counts[4].map(cur_dict)
counts.iloc[:, 1:4] = counts.iloc[:,1:4].apply(pd.to_numeric)
counts[2] = (counts[2] + counts[3]) / 2
counts[1] = np.where(counts[0] == 'до', counts[1]/2, counts[1])
counts[1] = counts[1].combine_first(counts[2])
counts[1] = counts[1]*counts[4]
counts = counts.drop([0,2,3,4], axis=1)
counts = counts.rename(columns={1:'salary'})
```
```{python}
pattern = '(от|до)((\d+)до(\d+)|\d+)({})\.(\w+)'.format(cur_string)
counts = raw['salary'].copy()
counts = counts.str.replace(' ', '')
counts = counts.str.extract(pattern).dropna(how='all')
counts[1] = [x if x.isdigit() else None for x in counts[1]]
counts[4] = counts[4].map(cur_to_code)
counts[4] = counts[4].map(cur_dict)
counts.iloc[:, 1:4] = counts.iloc[:,1:4].apply(pd.to_numeric)
counts[2] = (counts[2] + counts[3]) / 2
counts[1] = np.where(counts[0] == 'до', counts[1]/2, counts[1])
counts[1] = counts[1].combine_first(counts[2])
counts[1] = counts[1]*counts[4]
counts[1] = np.where(counts[5] == 'наруки', counts[1], 0.87*counts[1])
counts.head(20)
```
```{python}
max_salary = max(counts['salary'])
bins = np.arange(0, max_salary, 10000)
plt.clf()
plt.hist(counts['salary'], bins=bins, color='#87A96B')
plt.xticks(np.arange(0, max_salary, 10000), fontsize=14)
plt.gca().yaxis.set_major_locator(ticker.MaxNLocator(integer=True))
plt.xlabel("Зарплата, руб.")
plt.ylabel("Количество вакансий")
plt.title("Гистограмма зарплат")
plt.show()
```
```{python}
round(counts['salary'].mean(), 2)
```
Добавим столбец обработанных зарплат в таблицу для дальнейшей обработки
```{python}
processed = raw.copy()
processed['salary'] = counts
```
## Удалёнка
Посмотрим, какая доля вакансий содержит предложение об удалённом трудоустройстве.
```{python}
remote_df = processed.loc[processed['description'].str.contains('удален|remote'), :]
office_df = processed.loc[~processed['description'].str.contains('удален|remote'), :]
remote_share = len(remote_df) / len(processed) * 100
print("Удалённую работу предлагают в {:.2f}% вакансий".format(remote_share))
```
Есть ли разница между зарплатами на удалёнке и на полном рабочем дне?
```{python}
missed_remote = remote_df['salary'].isna().sum() / len(remote_df) * 100
missed_office = office_df['salary'].isna().sum() / len(office_df) * 100
print("Доля вакансий без указания зарплат среди групп:")
print("Предложения удалённой работы: {:.2f}%".format(missed_remote))
print("Предложения трудоустройства в офисе: {:.2f}%".format(missed_office))
```
```{python}
mean_remote = remote_df['salary'].mean()
mean_office = office_df['salary'].mean()
median_remote = remote_df['salary'].median()
median_office = office_df['salary'].median()
plt.subplot(121)
plt.bar(('Удалёнка', 'Офис'), height=(median_remote, median_office))
plt.ylabel('Зарплата, руб.')
plt.title('Медианная зарплата')
plt.subplot(122)
plt.bar(('Удалёнка', 'Офис'), height=(mean_remote, mean_office))
plt.title('Средняя зарплата')
plt.suptitle('Сравнение доходов на удалёнке и в офисе')
plt.show()
```
## География вакансий
```{python}
cities = processed['place'].value_counts()[:15]
plt.barh(cities.index, cities)
plt.gca().invert_yaxis()
plt.xlabel('Количество вакансий')
plt.title('Распределение вакансий по городам')
plt.show()
```
## Анализ ключевых слов
```{python}
import nltk
```
```{python}
stopwords_rus = nltk.corpus.stopwords.words('russian')
stopwords_eng = nltk.corpus.stopwords.words('english')
tokens = [nltk.word_tokenize(x, language='russian') for x in processed['description']]
tokens = [token for tokens_list in tokens for token in tokens_list]
tokens = [token.lower() for token in tokens if token.isalpha()]
tokens = [morpher.parse(token)[0].normal_form for token in tokens]
tokens = [token for token in tokens if token not in stopwords_rus]
tokens = [token for token in tokens if token not in stopwords_eng]
```
```{python}
idx = nltk.text.ContextIndex(tokens)
fdist = nltk.FreqDist(tokens)
```
```{python}
concord = nltk.text.ConcordanceIndex(tokens)
```
```{python}
concord.find_concordance('навыки')
```
```{python}
keywords = [x[0].lower() for x in tags_counter.most_common(20)]
keywords = [w for ws in keywords for w in ws.split()]
similar = []
for word in tqdm(keywords):
similar.append(idx.similar_words(word, n=100))
similar = [word for wlist in similar for word in wlist]
similar = [word for word in similar if re.match('[a-zа-я]+', word)]
similar = list(set(similar))
freqs = list(map(fdist.get, similar))
```
```{python}
keywords
```
```{python}
top_words_df = pd.DataFrame(zip(similar, freqs), columns=['word', 'count'])
top_words_df = top_words_df.sort_values('count', ascending=False)
top_words_df = top_words_df.reset_index(drop=True)[:40]
```
```{python}
plt.barh(top_words_df['word'], top_words_df['count'])
plt.gca().invert_yaxis()
plt.title('Ключевые слова вакансий (англ.)')
plt.xlabel('Количество упоминаний')
plt.show()
```
## TF-IDF
```{python}
from sklearn.feature_extraction.text import TfidfVectorizer
```
```{python}
stopwords_full = stopwords_eng.extend(stopwords_rus)
```
```{python}
vectorizer = TfidfVectorizer()
```
```{python}
type(stopwords_full)
```
## Даты размещения вакансий
```{python}
dates = processed.groupby('date')['vac_id'].count().rename('count')
```
```{python}
plt.figure(figsize=(12,8))
plt.plot(dates.index, dates, marker='o')
plt.grid(ls='--')
plt.gca().tick_params('x', labelrotation=45)
plt.gca().spines['top'].set_color('none')
plt.gca().spines['right'].set_color('none')
plt.xlabel('Дата публикации')
plt.ylabel('Количество опубликованных вакансий')
plt.title('Распределение вакансий по дате публикации')
plt.show()
```
```{python}
```