添付のコードでグラフを作成すると、画像のようなグラフになりラベル(凡例)が表示されませんどのようにすれば表示されるようになりますか?
python
1import matplotlib.pyplot as plt 2import numpy as np 3import matplotlib 4print(matplotlib.__version__) 5 6x1=range(50) 7x2=[1,10,20,30,40,50] 8y1 = [-5275, -5266, -5255, -5243, -5230, -5216, -5202, -5187, -5172, -5156, -5140, -5123, -5107, -5090, -5073, -5056, -5039, -5022, -5005, -4988, -4972, -4955, -4938, -4921, -4904, -4888, -4871, -4854, -4838, -4821, -4805, -4788, -4772, -4756, -4739, -4723, -4706, -4690, -4674, -4657, -4641, -4624, -4608, -4591, -4575, -4558, -4542, -4525, -4509, -4492] 9y2=[-6458,-6441,-6404,-6344,-6262,-6158] 10plt.rcParams["xtick.direction"] = "in" #x軸の目盛線を内向きへ 11plt.rcParams["ytick.direction"] = "in" 12fig, ax=plt.subplots(constrained_layout=True) 13f = plt.figure() 14ax = f.add_subplot(111) 15ax.yaxis.set_ticks_position('both') 16ax.xaxis.set_ticks_position('both') 17ax.set_xlabel("m") 18ax.set_ylabel("s") 19ax.plot(x1, y1,marker='.', label="b") 20ax.plot(x2, y2,'*--', label='a') 21plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。