LoginSignup
0
0

More than 1 year has passed since last update.

03.00.EDA01基礎統計量

Last updated at Posted at 2022-06-14

df.head()
df.tail()
display(data.head())

全ての変数の最初の5行をレビュー
for col in df.columns:
	print({}\n.format(df[col].head())

# 行数と列数の確認
df.shape 

#基礎統計量
df.describe()
df[列名].describe()

#特徴名
columns()
df.columns

#データの大きさ
df.info()

# 特定列の値のcount
df[y].value_counts()

不明.png

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