PYTHON程式設計導論群【提問與解惑】資料統計
第一週
# 第一週
import matplotlib.pyplot as plt
import seaborn as sns
plt.rcParams['font.family'] = ['SimHei'] # Microsoft YaHei
plt.rcParams['axes.unicode_minus'] = False
%matplotlib inline
thinker = ['Jane', '許木', 'SY', 'Aris','呂明智','範晶晶','林青軒']
questions_quantity =[5,1,1,5,2,2,1]
contributor=['Jane','SY','Aris','呂明智','範晶晶']
contribution_quantity =[2,2,3,9,6]
# plot
fig, (ax1,ax2) = plt.subplots(1,2,sharex=False,sharey = False,figsize=(11,5))
sns.barplot(thinker, questions_quantity, ax = ax1)
sns.barplot(contributor, contribution_quantity, ax = ax2)
ax1.set_title('thinker')
ax2.set_title('contributor')
ax1.set_ylabel('questions_quantities')
ax2.set_ylabel('contribution_quantities')
fig.savefig("data_count.png", dpi = 75)
第二週
thinker = ['Aris','呂明智','Jane','範晶晶','林青軒']
questions_quantity =[1,2,12,2,3]
contributor=['SY','呂明智','範晶晶']
contribution_quantity =[1,7,12]
# plot
fig, (ax1,ax2) = plt.subplots(1,2,sharex=False,sharey = False,figsize=(11,5))
sns.barplot(thinker, questions_quantity, ax = ax1)
sns.barplot(contributor, contribution_quantity, ax = ax2)
ax1.set_title('thinker')
ax2.set_title('contributor')
ax1.set_ylabel('questions_quantities')
ax2.set_ylabel('contribution_quantities')
相關文章
- 2024 計算導論與程式設計程式設計
- 《Python程式設計練習與解答》之程式設計概論Python程式設計
- 併發程式設計導論程式設計
- 電腦科學和Python程式設計導論(一) 計算機相關理論Python程式設計計算機
- 電腦科學和Python程式設計導論(六) 測試與除錯Python程式設計除錯
- 電腦科學和Python程式設計導論(二 ) Python簡介Python程式設計
- Python 物件導向程式設計Python物件程式設計
- Python物件導向程式設計Python物件程式設計
- Python程式設計常見問題與解答Python程式設計
- Python SQLite資料庫程式設計PythonSQLite資料庫程式設計
- 電腦科學和Python程式設計導論week1Python程式設計
- Python程式設計方法論學習Python程式設計
- Python - 物件導向程式設計 - @propertyPython物件程式設計
- Python物件導向程式設計(1)Python物件程式設計
- Python - 物件導向程式設計 - super()Python物件程式設計
- Python OOP 物件導向程式設計PythonOOP物件程式設計
- python技能--物件導向程式設計Python物件程式設計
- Serverless 解惑——函式計算如何訪問 Redis 資料庫Server函式Redis資料庫
- Serverless 解惑——函式計算如何訪問 Mongo 資料庫Server函式Go資料庫
- Serverless 解惑——函式計算如何訪問 MySQL 資料庫Server函式MySql資料庫
- Serverless 解惑——函式計算如何訪問 PostgreSQL 資料庫Server函式SQL資料庫
- 從問題到程式 程式設計與C語言引論pdf程式設計C語言
- Serverless 解惑——函式計算如何訪問 SQL Server 資料庫Server函式SQL資料庫
- 14 Python物件導向程式設計:反射Python物件程式設計反射
- python物件導向程式設計基礎Python物件程式設計
- 圖解python | 物件導向程式設計圖解Python物件程式設計
- python之物件導向程式設計(一)Python物件程式設計
- 史上最全 Python 物件導向程式設計Python物件程式設計
- python基礎(物件導向程式設計)Python物件程式設計
- (Python程式設計 | 系統程式設計 | 並行系統工具 | 程式退出)Python程式設計並行
- Python程式設計常用的資料型別Python程式設計資料型別
- limanmanExp資料庫審計設計思路與重要程式碼資料庫
- Python學習之物件導向程式設計Python物件程式設計
- Python程式設計實現蟻群演算法詳解Python程式設計演算法
- 全網最適合入門的物件導向程式設計教程:00 物件導向設計方法導論物件程式設計
- MPI矩陣向量乘法程式碼《並行程式設計導論》矩陣並行行程程式設計
- 計算機導論與物理層計算機
- python資料統計之禪道bug統計Python