
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Matplotlib備忘録 - Qiita
# 1行3列表示 # tight_layout: 重なっている部分を重ならないようにする df = pd.read_csv("./matplotli... # 1行3列表示 # tight_layout: 重なっている部分を重ならないようにする df = pd.read_csv("./matplotlib2.csv") plt.figure(figsize=(6*3, 4), dpi=72, tight_layout=True) for i in range(3): plt.subplot(1,3,i+1) name="sample1" x = df.index y = df[df.columns[i]] plt.title(df.columns[i]) plt.tick_params(bottom=False) plt.plot(x, y, label=df.columns[i]) # plt.plot(x, y, 'rs:', label='line_1') plt.ylabel("value") plt.xlabel("index")