matplotlib でlabelを引数として関数に渡してプロットさせたいのですがうまくいきません。以下のスクリプトだどlabel_nameに'H 0T'が代入されて、ラベルとして表示されるはずと思うのですが、どの点がおかしいのでしょうか。
ご教授お願いします。
エラーメッセージはありません。
環境
windows10
python3.8.6
python
1 2import matplotlib.pyplot as plt 3plt.style.use('seaborn-whitegrid') 4import numpy as np 5 6 7fig = plt.figure() 8ax = fig.add_subplot(111, xlabel = 'xlabel', ylabel = 'ylabel') 9 10 11def plot(temperature_array, current_array, label_name): 12 ax.scatter(temperature_array, current_array, s = 3, label = label_name) 13 14 15temperature_array = [1,2,3,4,5] 16current_array = [3,2,6,1,3] 17 18plot( temperature_array, current_array, 'H 0T') 19 20plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/10/20 14:02