LoginSignup
1
1

More than 3 years have passed since last update.

pythonでデータ分析2

Posted at

pythonでデータ分析のつづき:初心者ですが


データの読み込み
train = pd.read_csv("train.csv")


データの中身を見る
train.head()


データの行数・列数を見る
train.shape


yの平均値と中央値を見る
train["y"].mean()
train["y"].median()


trainのyの折れ線グラフを描いてみまる
train["y"].plot()
image.png

1
1
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
1
1