用Python繪製一天之內的氣溫變化圖
假設一天中每隔兩個小時的氣溫分別是[15,13,14.5,17,20,25,26,26,27,22,18,15],請用Python繪製折線圖來表示這一變化過程。程式碼和結果如下:
from matplotlib import pyplot as plt
plt.figure(figsize=(12,8))
import matplotlib
font = {
‘family’:‘SimHei’,
‘weight’:‘bold’,
‘size’:12
}
matplotlib.rc(“font”, **font)
tem = [15,13,14.5,17,20,25,26,26,27,22,18,15]
temp = [f’{i}度’ for i in range(min(tem),max(tem)+1)]
t = [2i for i in range(0,12)]#表示數值
t1 = [f’{2i}h’ for i in range(0,12)]#表示刻度
t1
plt.xticks(t,t1,rotation=40)
plt.yticks(range(min(tem),max(tem)+1),temp)
plt.plot(t,tem,color=‘purple’,marker=‘o’)
plt.title(‘一天中每隔兩個小時的氣溫變化’,color=‘r’)
plt.xlabel(‘時間’,color=‘purple’)
plt.ylabel(‘溫度’,color=‘purple’)
plt.grid()
plt.show()
相關文章
- Python Matplotlib繪製氣溫圖表Python
- LC 氣溫變化趨勢
- 用Python的random模組繪製折線圖Pythonrandom
- 如何製作室內地圖,室內地圖繪製工具地圖
- sangerbox平臺使用(四)氣泡圖的繪製
- Python 用 OpenCV 繪製基本圖形系列(總)PythonOpenCV
- 氣泡圖繪製軟體那個專業,怎麼畫氣泡圖
- Python pyecharts繪製餅圖PythonEcharts
- Python例項:僅繪製圖例而不繪製實際的圖形Python
- 等值線圖的Python繪製方法Python
- Qt之自繪製餅圖QT
- Python 潮流週刊#51:用 Python 繪製美觀的圖表Python
- Python如何運用turtle繪製陰陽太極圖Python
- 用Python繪製專業的K線圖【含原始碼】Python原始碼
- 室內地圖怎麼製作,室內電子地圖是如何繪製的地圖
- 純CSS漸變繪製 Chrome 圖示CSSChrome
- 如何製作室內地圖,哪裡可以快速繪製室內地圖地圖
- 化學繪圖軟體ChemDraw,繪製簡單的化學元素繪圖
- Python呼叫graphviz繪製結構化圖形網路Python
- Python 繪製全球疫情地圖Python地圖
- Python pyecharts繪製詞雲圖PythonEcharts
- 室內地圖導航製作,簡單的地圖繪製軟體地圖
- python繪圖之matplotlibPython繪圖
- Python matplotlib繪製散點圖Python
- 多變數兩兩相互關係聯合分佈圖的Python繪製變數Python
- Android 之 GPU過度繪製與圖形渲染優化AndroidGPU優化
- 【 視覺化】熱力圖繪製原理視覺化
- Python視覺化-氣泡圖Python視覺化
- 使用joinjs繪製流程圖(五)-流程圖繪製JS流程圖
- 基於Python GDAL為長時間序列遙感影像繪製時相變化曲線圖Python
- [Python] Matplotlib 圖表的繪製和美化技巧Python
- Python繪製神經網路模型圖Python神經網路模型
- Python Pygal繪製世界人口地圖Python地圖
- Python繪圖與視覺化Python繪圖視覺化
- 視覺化圖表教程:業務資料地圖的繪製視覺化地圖
- Ptyhon視覺化:chapter3--繪製並定製化圖表視覺化APT
- Python繪製六種視覺化圖表詳解(建議收藏)Python視覺化
- 繪製SVG內容到Canvas的HTML5應用SVGCanvasHTML