以下、(X軸と並行する)y=4000の直線のグラフを書き加えたいのですが、
良い方法をご教示くださいませ。
python
1reasnablePrice=[4000,4000,3500,4500] 2import pandas as pd 3df=pd.Series(reasnablePrice,index=[1,2,3,4]) 4print(df) 5 6#平均値 = 4000 7av=int(df.mean()) 8print(av) 9 10#dfの出力 111 4000 122 4000 133 3500 144 4500 15 16#平均値の出力 174000 18 19 20import matplotlib.pyplot as plt 21plt.plot(df,marker='o',linestyle='none') 22plt.plot(av) 23plt.axis([0,4.5,0,5000]) 24plt.show()
◎やったこと
python
1import matplotlib.pyplot as plt 2plt.plot(df,marker='o',linestyle='none') 3plt.plot([4000,4000,4000,4000,4000,4000]) 4plt.axis([0,4.5,0,5000]) 5plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/27 10:48