LoginSignup
1
1

More than 3 years have passed since last update.

Python Matplotlibの動作確認用コード

Last updated at Posted at 2020-03-16

手早く手元でmatplotlibの動作確認をしたいとき向けの短いコード

サンプルコード

sample
import matplotlib.pyplot as plt

plt.plot([1,2,10,18,19,20])
plt.show()

結果

Figure_1.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1