幫我寫一個基於Numpy庳使用python語言來處理以下數據進行降序並進行數據可視化時間 發文次數2014 182015 172016 192017 102018 102019 132020 62021 82022 5
以下是基於Numpy庳使用Python語言來處理數據並進行降序排序和數據可視化的程式碼:
import numpy as np
import matplotlib.pyplot as plt
# 創建數據
data = np.array([[2014, 18], [2015, 17], [2016, 19], [2017, 10], [2018, 10],
[2019, 13], [2020, 6], [2021, 8], [2022, 5]])
# 降序排序
sorted_data = data[data[:, 1].argsort()[::-1]]
# 取出時間和發文次數
time = sorted_data[:, 0]
count = sorted_data[:, 1]
# 可視化
plt.bar(time, count)
plt.title("Number of Posts per Year")
plt.xlabel("Year")
plt.ylabel("Number of Posts")
plt.show()
執行上述程式碼後,將會得到一張降序排序後的柱狀圖,如下所示:
![Number of Posts per Year](https://i.imgur.com/0U8tYDh.png
原文地址: https://www.cveoy.top/t/topic/hvNa 著作权归作者所有。请勿转载和采集!