LoginSignup
3
0

More than 5 years have passed since last update.

matplotlibの使い方

Posted at

matplotlibの使い方について、使用したものを整理する。

ヒストグラム

サンプル
import pandas as pd
import matplotlib.pyplot as plt

train = pd.read_csv('../train.csv')

%matplotlib inline #jupyter notebook上にグラフ表示する場合には記載
plt.hist(train.Age)
3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0