figureインスタンスで、エラーが出てしまいます。
エラー表示は以下の通り。
AttributeError: module 'matplotlib' has no attribute 'figure'
解決策、よろしくお願いいたします。
python
1import numpy as np 2import matplotlib as plt 3x = np.linspace(-1, 1, 10) 4y1 = x 5y2 = x ** 2 6 7plt.figure(figsize=(3, 4)) 8 9plt.subplot(2,1,1) 10plt.plot(x, y1) 11 12plt.subplot(2,1,2) 13plt.plot(x, y2) 14 15plt.show()
エラー表示は以下の通りです
回答1件
あなたの回答
tips
プレビュー