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程式設計導論week1Python程式設計
- JavaScript 函數語言程式設計導論JavaScript函數程式設計
- 再論物件導向的Javascript程式設計物件JavaScript程式設計
- 提問的智慧 程式設計師成長之路程式設計師
- 程式設計師如何提一個好問題程式設計師
- Python程式設計常見問題與解答Python程式設計
- python mysql資料庫程式設計PythonMySql資料庫程式設計
- Python SQLite資料庫程式設計PythonSQLite資料庫程式設計
- Serverless 解惑——函式計算如何訪問 Mongo 資料庫Server函式Go資料庫
- Serverless 解惑——函式計算如何訪問 Redis 資料庫Server函式Redis資料庫
- Serverless 解惑——函式計算如何訪問 MySQL 資料庫Server函式MySql資料庫
- Serverless 解惑——函式計算如何訪問 PostgreSQL 資料庫Server函式SQL資料庫
- Python程式設計方法論學習Python程式設計
- Python OOP 物件導向程式設計PythonOOP物件程式設計
- Python - 物件導向程式設計 - @propertyPython物件程式設計
- Python - 物件導向程式設計 - super()Python物件程式設計
- python技能--物件導向程式設計Python物件程式設計
- Python物件導向程式設計(1)Python物件程式設計
- Python之物件導向程式設計Python物件程式設計
- 從問題到程式 程式設計與C語言引論pdf程式設計C語言
- JAVA程式與資料庫設計困惑~Java資料庫
- 五個程式設計師求職者的最佳提問程式設計師求職
- Serverless 解惑——函式計算如何訪問 SQL Server 資料庫Server函式SQL資料庫
- C++與物件導向程式設計C++物件程式設計
- 《機器學習導論》和《統計機器學習》學習資料:張志華教授機器學習
- (Python程式設計 | 系統程式設計 | 並行系統工具 | 程式退出)Python程式設計並行
- 計算機導論與物理層計算機