Advent Calendar의 캘린더·참가자수를 그래프로 해 보았다.
18432 단어 그래프파이썬matplotlib
개요
Qiita Advent Calendar 의 캘린더 수와 참가자 수를 그래프로 시각화해 보았습니다.
이전 준비
import urllib.request as req
from bs4 import BeautifulSoup
import matplotlib.pyplot as plt
# スクレイピング
url = "https://qiita.com/advent-calendar"
res = req.urlopen(url)
bs = BeautifulSoup(res, "html.parser")
all_list = [] # 年数、カレンダー数、参加者数を入れるリスト
for i in bs.select("div.container"):
for j in i.select("div.row.adventCalendarYearList_element"):
temp = [k.get_text() for k in j.find_all("dd")]
temp.insert(0,j.find("div").get_text())
all_list.append(temp)
all_list.reverse() # 年数を昇順にソート
# 年数
year_list = [i[0] for i in all_list]
# カレンダー数
carender_list = [int(i[1]) for i in all_list]
# 参加者数
participant_list = [int(i[2]) for i in all_list]
# 実行結果
print(year_list)
print(carender_list)
print(participant_list)
import urllib.request as req
from bs4 import BeautifulSoup
import matplotlib.pyplot as plt
# スクレイピング
url = "https://qiita.com/advent-calendar"
res = req.urlopen(url)
bs = BeautifulSoup(res, "html.parser")
all_list = [] # 年数、カレンダー数、参加者数を入れるリスト
for i in bs.select("div.container"):
for j in i.select("div.row.adventCalendarYearList_element"):
temp = [k.get_text() for k in j.find_all("dd")]
temp.insert(0,j.find("div").get_text())
all_list.append(temp)
all_list.reverse() # 年数を昇順にソート
# 年数
year_list = [i[0] for i in all_list]
# カレンダー数
carender_list = [int(i[1]) for i in all_list]
# 参加者数
participant_list = [int(i[2]) for i in all_list]
# 実行結果
print(year_list)
print(carender_list)
print(participant_list)
['2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020']
[1, 29, 82, 214, 377, 499, 590, 665, 771, 726]
[25, 548, 1455, 3863, 6830, 9285, 11014, 12448, 14872, 11318]
캘린더 수 및 연수 그래프
# カレンダー数と年数のグラフ
plt.bar(year_list,carender_list, color='b', width=0.3, alpha=0.5)
plt.ylabel("カレンダー数")
plt.xlabel("年")
plt.show()
# カレンダー数と年数のグラフ
plt.bar(year_list,carender_list, color='b', width=0.3, alpha=0.5)
plt.ylabel("カレンダー数")
plt.xlabel("年")
plt.show()
참가자 수와 연수 그래프
# 参加者数と年数のグラフ
plt.bar(year_list,participant_list, color='g', width=0.3, alpha=0.5)
plt.ylabel("参加者数")
plt.xlabel("年")
plt.show()
# 参加者数と年数のグラフ
plt.bar(year_list,participant_list, color='g', width=0.3, alpha=0.5)
plt.ylabel("参加者数")
plt.xlabel("年")
plt.show()
캘린더 수와 참가자 수를 정리한 그래프
# カレンダー数と参加者数をまとめたグラフ
plt.bar(year_list,carender_list, color='b', width=0.3, label='カレンダー数', alpha=0.5, align="edge")
plt.bar(year_list,participant_list, color='g', width=0.3, label='参加者数', alpha=0.5, align="center")
plt.ylabel("人数")
plt.xlabel("年")
plt.legend()
# カレンダー数と参加者数をまとめたグラフ
plt.bar(year_list,carender_list, color='b', width=0.3, label='カレンダー数', alpha=0.5, align="edge")
plt.bar(year_list,participant_list, color='g', width=0.3, label='参加者数', alpha=0.5, align="center")
plt.ylabel("人数")
plt.xlabel("年")
plt.legend()
요약
전체 코드
import urllib.request as req
from bs4 import BeautifulSoup
import matplotlib.pyplot as plt
# スクレイピング
url = "https://qiita.com/advent-calendar"
res = req.urlopen(url)
bs = BeautifulSoup(res, "html.parser")
all_list = [] # 年数、カレンダー数、参加者数を入れるリスト
for i in bs.select("div.container"):
for j in i.select("div.row.adventCalendarYearList_element"):
temp = [k.get_text() for k in j.find_all("dd")]
temp.insert(0,j.find("div").get_text())
all_list.append(temp)
all_list.reverse() # 年数を昇順にソート
# 年数
year_list = [i[0] for i in all_list]
# カレンダー数
carender_list = [int(i[1]) for i in all_list]
# 参加者数
participant_list = [int(i[2]) for i in all_list]
# 実行結果
print(year_list)
print(carender_list)
print(participant_list)
# カレンダー数と年数のグラフ
plt.bar(year_list,carender_list, color='b', width=0.3, alpha=0.5)
plt.ylabel("カレンダー数")
plt.xlabel("年")
plt.show()
# 参加者数と年数のグラフ
plt.bar(year_list,participant_list, color='g', width=0.3, alpha=0.5)
plt.ylabel("参加者数")
plt.xlabel("年")
plt.show()
# カレンダー数と参加者数をまとめたグラフ
plt.bar(year_list,carender_list, color='b', width=0.3, label='カレンダー数', alpha=0.5, align="edge")
plt.bar(year_list,participant_list, color='g', width=0.3, label='参加者数', alpha=0.5, align="center")
plt.ylabel("人数")
plt.xlabel("年")
plt.legend()
Reference
이 문제에 관하여(Advent Calendar의 캘린더·참가자수를 그래프로 해 보았다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kuro_take/items/111a9b1a30fcff139bc4
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import urllib.request as req
from bs4 import BeautifulSoup
import matplotlib.pyplot as plt
# スクレイピング
url = "https://qiita.com/advent-calendar"
res = req.urlopen(url)
bs = BeautifulSoup(res, "html.parser")
all_list = [] # 年数、カレンダー数、参加者数を入れるリスト
for i in bs.select("div.container"):
for j in i.select("div.row.adventCalendarYearList_element"):
temp = [k.get_text() for k in j.find_all("dd")]
temp.insert(0,j.find("div").get_text())
all_list.append(temp)
all_list.reverse() # 年数を昇順にソート
# 年数
year_list = [i[0] for i in all_list]
# カレンダー数
carender_list = [int(i[1]) for i in all_list]
# 参加者数
participant_list = [int(i[2]) for i in all_list]
# 実行結果
print(year_list)
print(carender_list)
print(participant_list)
# カレンダー数と年数のグラフ
plt.bar(year_list,carender_list, color='b', width=0.3, alpha=0.5)
plt.ylabel("カレンダー数")
plt.xlabel("年")
plt.show()
# 参加者数と年数のグラフ
plt.bar(year_list,participant_list, color='g', width=0.3, alpha=0.5)
plt.ylabel("参加者数")
plt.xlabel("年")
plt.show()
# カレンダー数と参加者数をまとめたグラフ
plt.bar(year_list,carender_list, color='b', width=0.3, label='カレンダー数', alpha=0.5, align="edge")
plt.bar(year_list,participant_list, color='g', width=0.3, label='参加者数', alpha=0.5, align="center")
plt.ylabel("人数")
plt.xlabel("年")
plt.legend()
Reference
이 문제에 관하여(Advent Calendar의 캘린더·참가자수를 그래프로 해 보았다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kuro_take/items/111a9b1a30fcff139bc4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)