溫馨提示×

pycharm怎么創(chuàng)建圖表窗口

小億
143
2024-01-10 10:38:45
欄目: 編程語言

在PyCharm中創(chuàng)建圖表窗口,可以使用matplotlib庫來實現(xiàn)。

  1. 首先,確保你已經(jīng)安裝了matplotlib庫。你可以使用以下命令在終端中安裝它:

    pip install matplotlib
    
  2. 創(chuàng)建一個新的Python文件,并導入matplotlib庫:

    import matplotlib.pyplot as plt
    
  3. 使用plt.figure()函數(shù)創(chuàng)建一個新的圖表窗口:

    plt.figure()
    
  4. 使用其他matplotlib函數(shù)來繪制圖表,例如繪制折線圖:

    x = [1, 2, 3, 4, 5]
    y = [10, 5, 7, 8, 3]
    plt.plot(x, y)
    
  5. 最后,使用plt.show()函數(shù)顯示圖表窗口:

    plt.show()
    

完整的示例代碼如下所示:

import matplotlib.pyplot as plt

plt.figure()

x = [1, 2, 3, 4, 5]
y = [10, 5, 7, 8, 3]
plt.plot(x, y)

plt.show()

運行代碼后,將會顯示一個包含折線圖的新窗口。

0