iT邦幫忙

0

如何用 Python 3.x Matplotlib 畫出動態兩條折線圖 時間軸 (Time) 和分別各是 Commenter Mood (1) / Commenter Mood (0)?

  • 分享至 

  • xImage

不太清楚. 如何用 Python 3.x Matplotlib 畫出動態兩條折線圖 時間軸 (Time) 和分別各是 Commenter Mood (1) / Commenter Mood (0)? 需要大家幫忙, 提供一下做法. 謝謝.!

https://ithelp.ithome.com.tw/upload/images/20220112/2014566803lLGFF5Rf.jpg

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0
Samuel
iT邦好手 1 級 ‧ 2022-01-12 15:23:50
最佳解答

一個入門小範例
https://ithelp.ithome.com.tw/upload/images/20220112/201074526444IXxmCF.png

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(-3,3,50)
y1 = 2*x+1
y2 = -x**2

plt.figure(num=3 , figsize=(4,2))
plt.plot(x,y2)
plt.plot(x,y1,color='red',linewidth=1.0,linestyle='--')

plt.xlim((-1,2))
plt.ylim((-2,3))

plt.xlabel('I am X')
plt.ylabel('I am Y')

plt.show()

參考
https://coolmandiary.blogspot.com/2017/06/windowspythonopencvpillowmatplotlibsele.html

我要發表回答

立即登入回答