現状のグラフの横の目盛りの、
1より小さい領域と、5より大きい領域をなくし、以下のようなグラフにしたいと思っています。
アドバイス、よろしくお願いいたします。
python
1import numpy as np 2 3x=np.arange(1,6) 4y1=1.1**x 5y2=(1.1+0.4)**x 6 7%matplotlib inline 8import matplotlib.pyplot as plt 9 10fig=plt.figure() 11ax=fig.add_subplot(1,1,1) 12ax.plot(x,y1,color='green', label='1.1') 13ax.plot(x,y2,color='red', label='1.4') 14plt.legend() 15plt.grid()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/12 07:44