PyCharmでmatplotlibのグラフ出力
2135 ワード
PyCharmで散布図の描画
PythonのIDE(統合開発環境)である
PyCharmを使ってmatplotlibのグラフを出力します。
そのために最後にplt.show()メソッドを実行します。
これがなければ出力はされませんのでお気をつけください。
(PyCharmのインストール等の情報はページ下へございます)
Python サンプルコード
plotShow.py
import numpy as np
import matplotlib.pyplot as plt
# 乱数を発生させる
x = np.random.rand(100)
y = np.random.rand(100)
# 散布図を描画
plt.scatter(x,y)
plt.show()
- PyCharmのダウンロード PyCharmのダウンロードページ
- PyCharmの日本語化 PyCharmの日本語化設定-Qiita(Hirotaka Suetakeさん)
Author And Source
この問題について(PyCharmでmatplotlibのグラフ出力), 我々は、より多くの情報をここで見つけました https://qiita.com/ProOJI/items/0f76f50d45fbb473f38f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .